valueAxis.minNumber(default: 0)
The minimum value of the axis. This is often used in combination with themaxconfiguration option.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
min: 5
},
series: [{
data: [10, 15, 8, 12, 20, 25]
}]
});
</script>
In this article