rounded String (default: 'medium')

Specifies the size of the chip. Valid options are small, medium, large, full and none.

Example

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