rootItem.encodedBoolean(default: true)

Defines whether to encode the item's text. To render entities or HTML, set it to false.

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: "&lt;Home&gt;",
        encoded: false // Allows HTML entities to be rendered
    }
});
</script>
In this article
rootItem.encoded
Not finding the help you need?
Contact Support