Hi, I’m having a problem connecting some nodes via links. When the connection is made, they overlap over the nodes. How can I avoid this? Thanks in advance.
That’s how it looks.
I need something similar to this.
That’s my linkTemplate code
this.dia.linkTemplate =
$(go.Link,
{ routing: go.Link.AvoidsNodes,
corner: 15 },
$(go.Shape, { toArrow: "Standard" })
);
public diagramLinkData: Array<go.ObjectData> = [
{ from: "311", to: "314" },
{ from: "311", to: "315" },
{ from: "311", to: "316" },
];