anticlockwiseBoolean
(default: false)
A flag indicating if the arc should be drawn in clockwise or anticlockwise direction. Defaults to clockwise direction.
Example
<script>
var geom = kendo.geometry;
var center = [40, 40];
var arc = new geom.Arc(center, {
radiusX: 20,
radiusY: 20,
startAngle: 0,
endAngle: 180,
anticlockwise: true
});
console.log(arc.anticlockwise); // true
</script>
In this article