centerkendo.geometry.Point
The location of the circle center.
Example
<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>
In this article