scale.endAngleNumber
(default: 180)
The end angle of the gauge. The gauge is rendered clockwise(0 degrees are the 180 degrees in the polar coordinate system)
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
scale: {
endAngle: 270
}
});
</script>
In this article