<div id="diagram"></div>
<script>
var point = new kendo.dataviz.diagram.Point(80, 120);
console.log("Initial y:", point.y);
point.y = 300;
console.log("Modified y:", point.y);
$("#diagram").kendoDiagram({
shapes: [{
id: "shape1",
x: point.x,
y: point.y,
width: 90,
height: 45,
type: "rectangle"
}]
});
</script>