size String (default: 'medium')

Specifies the gap between the Chips in the ChipList. Valid options are small, medium, large and none.

Example

<div id="chiplist"></div>
<script>
    $('#chiplist').kendoChipList({
        size: "large",
        itemSize: "none",
        items: [
            { label: 'One' },
            { label: 'Two' },
            { label: 'Three' },
        ]
    });
</script>
In this article