text String
The content of the text block.
Example - setting the content of 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: 80,
height: 80,
fill: { color: "#add8e6" }
}));
g.append(new diagram.TextBlock({
text: "My Shape",
x: 5,
y: 30
}));
return g;
};
$("#diagram").kendoDiagram({
layout: "tree",
shapes: [{
id: 123,
visual: getVisual
}]
});
</script>