items.themeColor String (default: 'base')

Specifies the theme color of the Chip item. Valid options are:

  • base: apply coloring based on surface theme color.
  • info: apply coloring based on info theme color.
  • success: apply coloring based on success theme color.
  • warning:apply coloring based on warning theme color.
  • error: apply coloring based on error theme color.

Example

<div id="chiplist"></div>
<script>
    $('#chiplist').kendoChipList({
        items: [
            { label:"Base", themeColor: 'base' },
            { label:"Info", themeColor: 'info' },
            { label:"Success", themeColor: 'success' },
            { label:"Warning", themeColor: 'warning' },
            { label:"Error", themeColor: 'error' },
        ]
    });
</script>
In this article