state.initialSeries.nameString
The name of the chart series which is visible in the legend.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
initialSeries: {
name: "Sales Data",
field: "sales"
}
}
});
</script>