shapes.dataItemObject
The data item associated with the shape.
Example - using data items with shapes
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
dataItem: { name: "Process A", status: "active" },
content: { text: "#= dataItem.name #" }
}]
});
</script>
In this article