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

Center

fields

The location of the circle center.

center

kendo.geometry.Point
<script>
var geom = kendo.geometry;
var circle = new geom.Circle([10, 10], 20);
console.log(circle.center); // Point {x: 10, y: 10}

// Access center coordinates
console.log(circle.center.x); // 10
console.log(circle.center.y); // 10
</script>
Not finding the help you need?
Contact Support