valueAxis.reverseBoolean
(default: false)
Reverses the axis direction - values increase from right to left and from top to bottom.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
reverse: true
},
series: [{
data: [10, 15, 8, 12]
}]
});
</script>
In this article