endAngleNumber
The end angle of the arc in decimal degrees. Measured in clockwise direction with 0 pointing "right". Negative values or values greater than 360 will be normalized.
Example
<script>
var geom = kendo.geometry;
var arc = new geom.Arc([50, 50], {
radiusX: 30,
radiusY: 20,
startAngle: 45,
endAngle: 315
});
console.log(arc.endAngle); // 315
</script>
In this article