valueAxis.minorUnitNumber
The interval between minor divisions. It defaults to 1/5th of the majorUnit.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
minorUnit: 2
},
series: [{
data: [10, 15, 8, 12, 20, 25]
}]
});
</script>
In this article