state.categoryAxis.labelsObject
The axis labels configuration.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
labels: {
color: "#666",
font: "11px Arial",
format: "{0:MMM}",
rotation: 30,
visible: true
}
}
}
});
</script>