state.valueAxis.labels.fontString(default: "12px Arial,Helvetica,sans-serif")
The font style of the labels. Accepts a valid CSS color string, for example "20px 'Courier New'".
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
valueAxis: {
labels: {
font: "14px 'Georgia'"
}
}
}
});
</script>