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

Bbox

methods

Returns the bounding box of this arc after applying the specified transformation matrix.

Parameters:matrixkendo.geometry.Matrix

Transformation matrix to apply.

Returns:kendo.geometry.Rect

The bounding box after applying the transformation matrix.

<script>
var geom = kendo.geometry;
var arc = new geom.Arc([50, 50], {
    radiusX: 20,
    radiusY: 15,
    startAngle: 0,
    endAngle: 180
});
var matrix = geom.Matrix.unit();
var boundingBox = arc.bbox(matrix);
console.log(boundingBox); // Rect with the bounding box coordinates
</script>
Not finding the help you need?
Contact Support