connections.fromConnectorString
(default: "Auto")
Specifies the name of the source shape connector that should be used by the connection.
Example - originating the connection from the shape "bottom" connector
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: {
text: "Monday"
},
x: 100,
y: 20
}, {
id: "2",
content: {
text: "Tuesday"
},
x: 300,
y: 20
}],
connections: [
{
fromConnector: "bottom",
from: "1",
to: "2",
endCap: "ArrowEnd"
}]
});
</script>
In this article