rounded String (default: 'medium')

Specifies the size of the chip. Valid options are small, medium, large, full 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-full">Full chip</span>
<span id="chip-none">Non-rounded chip</span>
<script>
    $('#chip-small').kendoChip({ rounded: 'small', themeColor: 'success' });
    $('#chip-medium').kendoChip({ rounded: 'medium', themeColor: 'success' });
    $('#chip-large').kendoChip({ rounded: 'large', themeColor: 'success' });
    $('#chip-full').kendoChip({ rounded: 'full', themeColor: 'success' });
    $('#chip-none').kendoChip({ rounded: 'none', themeColor: 'success' });
</script>
In this article