state.legend.visibleBoolean(default: true)
If set to true the chart will display the legend. By default the chart legend is visible.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
legend: {
visible: false
}
}
});
</script>
In this article