state.legend.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: {
legend: {
labels: {
font: "13px 'Tahoma'"
}
}
}
});
</script>