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