state.series.categoryFieldString(default: "category")
The data item field which contains the category name or date.
The points will be rendered in chronological order if the category is a date.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
series: [{
categoryField: "month",
data: [
{ month: "Jan", value: 100 },
{ month: "Feb", value: 150 }
]
}]
}
});
</script>