state.categoryAxis.labels.colorString
The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
labels: {
color: "#ff0000"
}
}
}
});
</script>
In this article