Dependency Link adjustment

Hi.
Can anyone tell me if it is possible to adjust the dependency link line position relatively to the task box?
The issue is that sometimes one task have multiple dependency links to different tasks, and we have to use START_TO_START. In this situation, if tasks are align in time, all the link lines are together and is not easy to distinguish. So, if we could manipulate the relative position of the link line …
Thanks

Hi,
there is no public way to do it.
You can try redefining a function that builds a path for a link line
github.com/DHTMLX/gantt/blob/v3 … t.js#L3003

The function by itself is quite simple, despite the huge if-else block. It takes a link object as an argument, and defines a set of dots that are later connected by lines and forms a relation line (it can draw only horizontal and vertical lines, so you can’t create diagonal dots). If you redefine a function, you can add a correction so the links could be distinguished

github.com/DHTMLX/gantt/blob/v3 … t.js#L3020

Or you can define a link_class template and move links a bit using margins
docs.dhtmlx.com/gantt/api__gantt … plate.html