sizeString(default: undefined)
Specifies the gap between the Chips in the ChipList. 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
<div id="chiplist"></div>
<script>
$('#chiplist').kendoChipList({
size: "large",
itemSize: "none",
items: [
{ label: 'One' },
{ label: 'Two' },
{ label: 'Three' },
]
});
</script>