removable Boolean
(default: false)
Specifies if the Chip will be removable or not. If the property is set to true, the Chip renders a remove icon.
Important: Clicking the remove icon will not remove the Chip itself.
Example
<span id="chip"></span>
<script>
$("#chip").kendoChip({
label: 'Chip text',
removable: true
});
</script>