state.categoryAxis.categoriesArray
The category names. The chart will create a category for every item of the array.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
categories: ["Q1", "Q2", "Q3", "Q4"]
}
}
});
</script>
In this article