xNumber
The X position of the top-left corner of the rectangle.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
type: "rectangle",
x: 50,
y: 100,
width: 200,
height: 100,
fill: {
color: "#ff6358"
}
}]
});
</script>