shapes.center.xNumber
The x-coordinate of the shape center.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
center: { x: 200 },
content: { text: "Shape" }
}]
});
</script>
In this article