scaleObject
Configures the scale.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
scale: {
min: 0,
max: 100,
startAngle: -90,
endAngle: 90,
majorTicks: {
color: "#333"
}
}
});
</script>