valueAxis.maxNumber(default: 1)
The maximum value of the axis. This is often used in combination with theminconfiguration option.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
max: 30
},
series: [{
data: [10, 15, 8, 12, 20, 25]
}]
});
</script>