itemSizeString(default: 'medium')
Specifies the size of the chip. Valid options are small, medium, large and none.
Example
<div id="chiplist"></div>
<script>
$('#chiplist').kendoChipList({
size: "large",
itemSize: "small",
items: [
{ label: 'One' },
{ label: 'Two' },
{ label: 'Three' },
]
});
</script>