Gantt APIMethodsgetLinkNodeOn this pagegetLinkNode Description Returns the HTML element of the specified dependency link getLinkNode: (id: string | number) => HTMLElementParameters id - (required) string | number - the link id Returns node - (HTMLElement) - the HTML element of the link Examplegantt.addLink({ id:1, source:1, target:2, type:1});gantt.getLinkNode(1); //-> <div className="gantt_task_link" link_id="1">…</div>