setOptions
Modifies the initial configuration of the chip
Parameters
options Object
The new options.
Example
<span id="chip"></span> <script> var chip = $('#chip').kendoChip({ label: 'Old chip text', themeColor:'success' }).data('kendoChip'); chip.setOptions({ label: 'New chip text', themeColor: 'error' }); </script> In this article