onGanttScroll

Gantt 차트가 특정 위치로 스크롤될 때 트리거됩니다.

void onGanttScroll(number left,number top);
leftnumber수평 스크롤 위치
topnumber수직 스크롤 위치

Example

gantt.attachEvent("onGanttScroll", function (left, top){
    // 여기에 커스텀 로직 작성
});

See also
  • API
  • Articles
    • How-tos (무한 스크롤 설정 방법 참고)
    • How-tos (동적으로 작업을 로드하는 방법 참고)
  • Back to top