Changing link style

Hello. I want to customize my links as shown in image ie exit from a task and point to top left of corresponding target. Thank you

Hello,
Unfortunately, right now, there is no way to change how the links are rendered. In the future, the dev team will add a way to do that, but I cannot give you any ETA.

For now, you need to implement a custom solution by using the Gantt API and Javascript.

It is possible to display custom HTML elements in the timeline by using the addTaskLayer method:
https://docs.dhtmlx.com/gantt/api__gantt_addtasklayer.html
But you need to manually create all nodes for the link.
I have the following examples of the implementation:
http://snippet.dhtmlx.com/5/5a7b2a002
http://snippet.dhtmlx.com/5/4885caf75
http://snippet.dhtmlx.com/75d1f4b82

Though it doesn’t look the way you want, it can help you to start implementing your solution.