from kendo.dataviz.diagram.Shape
The shape, if any, that the connection originates from.
Example - configuring the from
<button id="getShapeBtn">Get Source Shape</button>
<div id="diagram"></div>
<script>
var Shape = kendo.dataviz.diagram.Shape;
$("#diagram").kendoDiagram();
var diagram = $("#diagram").data("kendoDiagram");
var shape1 = diagram.addShape( new Shape({ x: 100, y: 100 }));
var shape2 = diagram.addShape( new Shape({ x: 300, y: 180 }));
var connection = new kendo.dataviz.diagram.Connection(shape1, shape2, {
fromConnector: "left",
type: "cascading",
selectable: false
});
diagram.addConnection(connection);
$("#getShapeBtn").on("click", function(){
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("Source shape id: " + diagram.connections[0].from.id);
});
</script>