size String (default: 'medium')

Specifies the size of the chip. Valid options are small, medium, large and none.

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>
In this article