linkTemplate changes

I’m using a LayeredDigraphLayout and I have two parent nodes that will link to the save children node. Right now its displaying like this

image

you can see that we have 2 links. Is it possible to overlap the 2 links? so they don’t display under each other?

Thanks,
Ennio

Surely there are more than 2 links shown in your screenshot?

LayeredDigraphLayout is doing the routing of the links that way. It actually makes an effort to avoid overlapping link segments there, unless they connect with the same node. You can turn off that routing behavior by setting LayeredDigraphLayout.linkSpacing to zero.

Thank you so much. That did it. :)