타임라인 영역에서 작업 바의 높이를 제어합니다.
이 속성은 더 이상 권장되지 않습니다.
gantt.config.task_height = 30;
gantt.init("gantt_here");
task_height 속성은 더 이상 권장되지 않습니다. 대신 bar_height 설정 속성을 사용하세요:
gantt.config.bar_height = 30;
gantt.init("gantt_here");
task_height 속성은 v7.1에서 deprecated 되었습니다.
Back to top