state.series.nameString
The name of the chart series which is visible in the legend.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
series: [{
name: "Monthly Sales",
data: [100, 150, 200]
}]
}
});
</script>