New to Kendo UI for jQueryStart a free 30-day trial

Size

configuration

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.

size

String

Default: undefined

<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>
Not finding the help you need?
Contact Support