messages.format.valueAxis.titleObject
Specifies the text for the title area of the valueAxis panel
Example
<div id="chartwizard"></div>
<script>
$("#chartwizard").kendoChartWizard({
messages: {
format: {
valueAxis: {
title: {
text: "Title Text",
color: "Title Color",
font: "Title Font"
}
}
}
}
});
</script>