valueAxis.narrowRangeBoolean
(default: true)
Prevents the automatic axis range from snapping to 0.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
narrowRange: false
},
series: [{
data: [10, 15, 8, 12]
}]
});
</script>
In this article