scaleObject
Configures the scale.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 40
}],
scale: {
min: 0,
max: 100,
startAngle: -45,
endAngle: 225,
majorUnit: 20,
minorUnit: 5
}
});
</script>