y Number
The Y position of the top-left corner of the text block.
Example - setting position to the text block
<div id="diagram"></div>
<script>
var diagram = kendo.dataviz.diagram;
function getVisual(data) {
var g = new diagram.Group();
g.append(new diagram.Circle({
width: 60,
height: 60,
fill: { color: "#add8e6" }
}));
g.append(new diagram.TextBlock({
text: data.id,
x: 18,
y: 20
}));
return g;
};
$("#diagram").kendoDiagram({
layout: "tree",
shapes: [{
id: 123,
visual: getVisual
}]
});
</script>