fillMode String (default: 'solid')

Specifies the background and border styles of the Chip items. Valid fillMode options are:

  • solid (default)
  • outline
  • none

Example

<div id="chiplist"></div>
<script>
    $('#chiplist').kendoChipList({
        fillMode: "outline",
        items: [
            { label: 'One' },
            { label: 'Two' },
            { label: 'Three' },
        ]
    });
</script>
In this article