Goodday, Im using GoJS Autolayout and its great so far, but one thing that bothers me atm and something i cant seem to fix is that the lines are not drawn properly when autolayouting.
See screenshot to know what I mean.
Configuration:
layout: $(go.LayeredDigraphLayout, {
direction: 90,
layerSpacing: 50,
this.diagram.linkTemplate = $(go.Link,
{
routing: go.Link.AvoidsNodes,
curve: go.Link.JumpGap,
},
$(go.Shape),
$(go.Shape, { toArrow: 'Standard' })
);
Is there a way to keep the lines as straight as possible and only reroute when its necessary?
thanks in advance!