connections.from Object|String|Number
Defines the source of the connection. You can set this property to a value matching a shape id or to an object with XY-coordinates.
Example - configuring connection "from" and "to" settings
<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: [
{
from: {
x: 20,
y: 70
},
to: "1",
startCap: "FilledCircle"
},
{
from: "1",
to: "2",
endCap: "ArrowEnd"
}]
});
</script>
connections.from.x Number
Defines the x-coordinate of the connection source.
connections.from.y Number
Defines the y-coordinate of the connection source.
connections.fromConnector String
(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>