state.categoryAxis.labels.visibleBoolean(default: true)
If set to true the chart will display the category axis labels. By default the category axis labels are visible.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
labels: {
visible: false
}
}
}
});
</script>