간트 API메서드detachEvent이 페이지에서detachEvent Description 이전에 attachEvent() 메서드를 통해 추가된 이벤트 핸들러를 제거합니다. detachEvent: (id: string) => voidExampleconst myEvent = gantt.attachEvent("onTaskClick", function(id, e) { alert("You've just clicked an item with id="+id);});gantt.detachEvent(myEvent);Related API attachEvent Related Guides 이벤트 처리