shapes.centerObject
The center point of the shape.
Example - setting shape center point
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
center: { x: 150, y: 100 },
content: { text: "Centered Shape" }
}]
});
</script>
In this article