content
Gets or sets the text block content.
Parameters
content String
The new text content.
ReturnsString
the current text content.
Example - setting the text block text dynamically
<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" }
}));
var text = new diagram.TextBlock({
x: 18,
y: 20
});
text.content("123");
g.append(text);
return g;
};
$("#diagram").kendoDiagram({
layout: "tree",
shapes: [{
id: 123,
visual: getVisual
}]
});
</script>