state.categoryAxis.labels.formatString(default: "{0}")
The format used to display the labels. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
labels: {
format: "{0:MMM yyyy}"
}
}
}
});
</script>
In this article