shapeDefaults.xNumber(default: 0)
Defines the x-coordinate of shapes added to the Diagram.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapeDefaults: {
x: 200
},
shapes: [
{ content: { text: "Shape 1" } },
{ content: { text: "Shape 2" } }
]
});
</script>