<div id="diagram"></div>
<script>
var point = new kendo.dataviz.diagram.Point(75, 200);
console.log("Y coordinate:", point.y);
$("#diagram").kendoDiagram({
shapes: [{
id: "shape1",
x: point.x,
y: point.y,
width: 80,
height: 40,
type: "circle"
}]
});
</script>