setRadiusX
Sets the x radius of the arc.
Parameters
value Number
The new arc x radius.
Returns
kendo.geometry.Arc
The current arc instance.
Example
<script>
var geom = kendo.geometry;
var arc = new geom.Arc([50, 50], {
radiusX: 20,
radiusY: 15,
startAngle: 30,
endAngle: 150
});
arc.setRadiusX(45);
console.log(arc.radiusX); // 45
</script>
In this article