rootItem.showTextBoolean
Defines whether to show the text. Default value is false for rootItem and true for 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: {
text: "Home",
icon: "home",
showText: true, // Show the text for the root item
showIcon: true
}
});
</script>