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