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

Sets the end angle of the arc in decimal degrees. Measured in clockwise direction with 0 pointing "right".

Parameters:valueNumber

The new arc end angle.

Returns:kendo.geometry.Arc

The current arc instance.

<script>
var geom = kendo.geometry;
var arc = new geom.Arc([60, 70], {
    radiusX: 30,
    radiusY: 20,
    startAngle: 0,
    endAngle: 90
});
arc.setEndAngle(270);
console.log(arc.endAngle); // 270
</script>
Not finding the help you need?
Contact Support