task_height

타임라인 영역에서 작업 바의 높이를 제어합니다.

number|string task_height;

Deprecated

이 속성은 더 이상 권장되지 않습니다.

Example

gantt.config.task_height = 30;
gantt.init("gantt_here");


Default value:

"full"
Details

task_height 속성은 더 이상 권장되지 않습니다. 대신 bar_height 설정 속성을 사용하세요:

gantt.config.bar_height = 30;
gantt.init("gantt_here");
Change log

task_height 속성은 v7.1에서 deprecated 되었습니다.

Back to top