messages.format.valueAxis.labels.labelFormatObject
Specifies the text for the labelFormat area of the valueAxis panel
Example
<div id="chartwizard"></div>
<script>
$("#chartwizard").kendoChartWizard({
messages: {
format: {
valueAxis: {
labels: {
labelFormat: {
default: "Default",
text: "Text",
number: "Number",
currency: "Currency",
percent: "Percent"
}
}
}
}
}
});
</script>