categoryAxis.reverseBoolean
(default: false)
Reverses the axis direction - categories are listed from right to left and from top to bottom.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
data: [1, 2, 3, 4, 5],
categoryAxis: {
reverse: true
}
});
</script>
In this article