state.legend.labels.colorString(default: "black")
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: {
legend: {
labels: {
color: "#666666"
}
}
}
});
</script>