legend.title.textString
The text of the legend title. You can also set the text directly for a title with default options.
The text can be split into multiple lines by using line feed characters ("\n").
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
title: {
text: "Chart Series\nData Legend"
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [4, 5, 6] }
]
});
</script>
In this article