avatarClass String (default: '')

If set, value will be appended to the icon's element class attribute. It also appends "k-chip avatar" and "k-avatar" classes to the icon's element.

Example

<style>
    .maria {
        background-image: url("https://demos.telerik.com/kendo-ui/content/web/Customers/BERGS.jpg");
    }
</style>
<span id="chip"></span>
<script>
    $('#chip').kendoChip({
        avatarClass: 'maria',
        label: 'Maria'
    });
</script>
In this article