legend.inactiveItems.labels.template String|Function
The template which renders the labels.
The fields which can be used in the template are:
- text - the text the legend item.
- series - the data series.
- value - the point value. (only for donut and pie charts)
- percentage - the point value represented as a percentage value. Available only for donut, pie and 100% stacked charts.
The text can be split into multiple lines by using line feed characters ("\n").
Example - set the chart legend label template as a string
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
labels: {
template: "Name: #: text #"
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [3, 4, 5] }
]
});
</script>
Example - set the chart legend label template as a function
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
labels: {
template: kendo.template("Name: #: text #")
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [3, 4, 5] }
]
});
</script>