sizeString(default: undefined)
Specifies the size of the chip. When undefined (the default), the theme controls the default size. Valid options are small, medium, large.
The
"none"value is deprecated. Use custom CSS instead.
Example
<span id="chip-small">Small chip</span>
<span id="chip-medium">Medium chip</span>
<span id="chip-large">Large chip</span>
<span id="chip-none">No padding chip</span>
<script>
$('#chip-small').kendoChip({ size: 'small', themeColor: 'success' });
$('#chip-medium').kendoChip({ size: 'medium', themeColor: 'success' });
$('#chip-large').kendoChip({ size: 'large', themeColor: 'success' });
$('#chip-none').kendoChip({ size: 'none', themeColor: 'success' });
</script>