fillModeString(default: undefined)
Specifies the background and border styles of the Chip items. When undefined (the default), the theme controls the default fill mode. Valid fillMode options are:
solidoutline
The
"none"value is deprecated. Use custom CSS instead.
Example
<div id="chiplist"></div>
<script>
$('#chiplist').kendoChipList({
fillMode: "outline",
items: [
{ label: 'One' },
{ label: 'Two' },
{ label: 'Three' },
]
});
</script>