rootItem.iconClassString

Defines the icon classes (the span element).

Example

<div id="chart"></div>
<div id="breadcrumb"></div>
<script>
$("#chart").kendoChart({
    categoryAxis: {
        categories: ["A", "B", "C"]
    },
    series: [{
        type: "column",
        data: [1, 2, 3]
    }]
});

$("#breadcrumb").kendoChartBreadcrumb({
    chart: "#chart",
    rootItem: {
        text: "Home",
        icon: "home",
        iconClass: "custom-icon large-icon", // Custom CSS classes for the icon span element
        showIcon: true
    }
});
</script>
In this article
rootItem.iconClass
Not finding the help you need?
Contact Support