getAnticlockwise
Gets the arc anticlockwise flag.
Returns
Boolean
The anticlockwise flag of the arc.
Example
<script>
var geom = kendo.geometry;
var arc = new geom.Arc([40, 40], {
radiusX: 20,
radiusY: 20,
startAngle: 0,
endAngle: 90,
anticlockwise: true
});
var isAnticlockwise = arc.getAnticlockwise();
console.log(isAnticlockwise); // true
</script>
In this article