New to Kendo UI for jQueryStart a free 30-day trial

Sets the arc anticlockwise flag.

Parameters:valueBoolean

The new anticlockwise value.

Returns:kendo.geometry.Arc

The current arc instance.

<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>
Not finding the help you need?
Contact Support