getLink
Description
Returns the dependency link object by the specified id
getLink: (id: string | number) => Link
Parameters
id- (required) string | number - the link id
Returns
link- (Link) - the link object
Example
gantt.addLink({
id:1,
source:1,
target:2,
type:1
});
gantt.getLink(1);// -> {id:1, source:1, target:2, type:1}
Details
For information about how to get all links connected to a specific task, see the Getting the Link Object/Id article.