scaleObject
Configures the scale.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
pointer: {
value: 30
},
scale: {
min: 0,
max: 100,
majorUnit: 20,
minorUnit: 5,
vertical: true,
reverse: false
}
});
</script>