state.categoryAxisArray(required)

The category axis configuration options.

Example

<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
    state: {
        categoryAxis: {
            labels: {
                color: "#333",
                font: "12px Arial",
                rotation: 45
            },
            title: {
                text: "Categories",
                color: "#666"
            }
        }
    }
});
</script>