rootItem.linkClassString

Defines the link classes (the a 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",
    navigation: true,
    rootItem: {
        text: "Home",
        href: "/home",
        linkClass: "custom-breadcrumb-link bold-link" // Custom CSS classes for the a element
    }
});
</script>
In this article
rootItem.linkClass
Not finding the help you need?
Contact Support