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

Gets the position of the bottom-right corner of the rectangle.

Returns:kendo.geometry.Point

The position of the bottom-right corner.

<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>
Not finding the help you need?
Contact Support