scale.endAngleNumber
(default: 210)
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").kendoRadialGauge({
pointer: [{
value: 70
}],
scale: {
endAngle: 180
}
});
</script>
In this article