rootItem.typeString
Defines the type of the item "rootitem" or "item".
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: {
type: "rootitem", // Specifies this is the root item
text: "Home"
}
});
</script>
In this article