rootItem.iconString

Defines the icon to be rendered.

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", // Icon name to be rendered
        showIcon: true
    }
});
</script>
In this article
rootItem.icon
Not finding the help you need?
Contact Support