state.valueAxisArray
The value axis configuration options.
If set to true the category axis direction will be reversed. By default categories are listed from left to right and from bottom to top.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
valueAxis: {
labels: {
color: "#666",
font: "12px Arial",
format: "{0:C}"
},
title: {
text: "Values",
color: "#333"
},
reverse: false
}
}
});
</script>