checks whether the specified link exists
id | string | number | the link id |
boolean | true, if such a link exists. Otherwise, false |
gantt.addLink({
id:1,
source:1,
target:2,
type:1
});
gantt.isLinkExists(1); // ->true
Back to top