scale.startAngleNumber
(default: -30)
The start 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: 40
}],
scale: {
startAngle: 0
}
});
</script>
In this article