state.valueAxis.title.fontString
The font of the title.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
valueAxis: {
title: {
font: "16px 'Segoe UI'"
}
}
}
});
</script>