shapes.content.text String
The text displayed in the shape.
Example - setting shapes text
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: {
text: "Day 1"
},
x: 100,
y: 20
}, {
id: "2",
content: {
text: "Day 2"
},
x: 450,
y: 20
}, {
id: "3",
content: {
text: "Day 3"
},
x: 250,
y: 200
}],
connections: [{
from: "1",
to: "2"
},{
from: "2",
to: "3"
}],
connectionDefaults: {
endCap: "ArrowEnd"
}
});
</script>