scale.maxNumber(default: 100)
The maximum value of the scale.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
pointer: {
value: 75
},
scale: {
min: 0,
max: 80
}
});
</script>