bottomRight
Gets the position of the bottom-right corner of the rectangle.
Example
<script>
var geom = kendo.geometry;
var rect = new geom.Rect([10, 20], [30, 40]);
// Get bottom-right corner
var bottomRight = rect.bottomRight();
console.log("Bottom-right x:", bottomRight.x); // 40 (10 + 30)
console.log("Bottom-right y:", bottomRight.y); // 60 (20 + 40)
</script>
Returns
kendo.geometry.Point
The position of the bottom-right corner.
In this article