setAnticlockwise
Sets the arc anticlockwise flag.
Parameters
value Boolean
The new anticlockwise value.
Returns
kendo.geometry.Arc
The current arc instance.
Example
<script>
var geom = kendo.geometry;
var arc = new geom.Arc([40, 40], {
radiusX: 25,
radiusY: 15,
startAngle: 0,
endAngle: 180,
anticlockwise: false
});
arc.setAnticlockwise(true);
console.log(arc.anticlockwise); // true
</script>
In this article