state.categoryAxis.title.fontString(default: "16px Arial,Helvetica,sans-serif")
The font style of the title.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
categoryAxis: {
title: {
font: "18px 'Segoe UI'"
}
}
}
});
</script>
In this article