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

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

Parameters:valueNumber

The new arc start angle.

Returns:kendo.geometry.Arc

The current arc instance.

<script>
var geom = kendo.geometry;
var arc = new geom.Arc([80, 50], {
    radiusX: 30,
    radiusY: 25,
    startAngle: 0,
    endAngle: 180
});
arc.setStartAngle(45);
console.log(arc.startAngle); // 45
</script>
Not finding the help you need?
Contact Support