state.categoryAxis.titleObject
The title configuration of the category axis.
The categoryAxis.title.text option must be set in order to display the title.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
title: {
text: "Time Period",
color: "#333",
font: "14px Arial"
}
}
}
});
</script>
In this article