getLink

주어진 id를 사용하여 dependency link 객체를 가져옵니다.

Link getLink(string | number id);
idstring | number링크 id
Link링크 객체

Example

gantt.addLink({
    id:1,
    source:1,
    target:2,
    type:1
});
gantt.getLink(1);// -> {id:1, source:1, target:2, type:1}

Details

특정 작업에 연결된 모든 링크를 가져오는 방법은 링크 객체/ID 가져오기 문서를 참조하세요.

Back to top