state.valueAxis.reverseBoolean(default: false)
If set to true the value axis direction will be reversed. By default categories are listed from left to right and from bottom to top.
Important
A reverse value axis is not supported for radar and polar charts.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
valueAxis: {
reverse: true
}
}
});
</script>