legend.title.visibleBoolean
(default: true)
If set to true
the chart will display the title. By default the title will be displayed.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
title: {
text: "Legend",
visible: false
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [4, 5, 6] }
]
});
</script>
In this article