sets the height of task bars in the timeline area
The property is deprecated.
gantt.config.task_height = 30;
gantt.init("gantt_here");
The task_height property is deprecated. Instead of it, you can use the bar_height configuration property:
gantt.config.bar_height = 30;
gantt.init("gantt_here");
the task_height property has been deprecated in v7.1
Back to top