state.categoryAxis.title.textString
The text of the title.
The text can be split into multiple lines by using line feed characters ("\n").
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
title: {
text: "Categories"
}
}
}
});
</script>