label String (default: '')

The label text of the chip. Default is empty string.

Example

<span id="text-chip"></span>
<span id="notext-chip"></span>
<script>
    $('#text-chip').kendoChip({
        themeColor: 'success',
        text: 'Chip'
    });
    $('#notext-chip').kendoChip({icon : 'home' });
</script>
In this article