state.valueAxis.titleObject

The title configuration of the value axis.

The valueAxis.title.text option must be set in order to display the title.

Example

<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
    state: {
        valueAxis: {
            title: {
                text: "Sales Amount",
                color: "#333",
                font: "14px Arial"
            }
        }
    }
});
</script>