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