Restrict link overlapping

On my canvas I have many nodes and the links connecting to are overlapping and we are finding it difficult to select a link from overlapping links. Is there a way that I can restrict this overlapping.

Code for link Template

myDiagram.linkTemplate =
$(go.Link,
{
routing: go.Link.AvoidsNodes,
curve: go.Link.JumpOver,
corner: 5,
cursor: “pointer”,
toEndSegmentLength: 30,
fromEndSegmentLength: 30
},
$(go.Shape, { stroke: isDark ? “white” : “black” }),
$(go.Shape, { toArrow: “Triangle” }, { stroke: isDark ? “white” : “black” }),
$(go.TextBlock,
new go.Binding(“text”, “text”))
);