legend.visible Boolean
(default: true)
If set to true
the chart will display the legend. By default the chart legend is visible.
Example - hide the legend
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
visible: false
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [3, 4, 5] }
]
});
</script>