shapes.content.template String|Function
The template which renders the labels.
Example - using a template for shape content
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: {
template: "Day 1: " + kendo.toString(new Date(), "dd MMM yyyy")
},
width: 200,
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>