state.valueAxis.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: {
valueAxis: {
labels: {
color: "#0066cc"
}
}
}
});
</script>