fillModeString(default: undefined)
Specifies the background and border styles of the Chip. When undefined (the default), the theme controls the default fill mode. Valid fillMode options are:
solidoutline
Example
<span id="chip-solid"></span>
<span id="chip-outline"></span>
<script>
$('#chip-solid').kendoChip({fillMode: 'solid', label: 'Solid' });
$('#chip-outline').kendoChip({fillMode: 'outline', label: 'Outline' });
</script>