setRadiusY
Sets the y radius of the arc.
Parameters
value Number
The new arc y radius.
Returns
kendo.geometry.Arc
The current arc instance.
Example
<script>
var geom = kendo.geometry;
var arc = new geom.Arc([70, 60], {
radiusX: 25,
radiusY: 20,
startAngle: 60,
endAngle: 240
});
arc.setRadiusY(35);
console.log(arc.radiusY); // 35
</script>
In this article