task_height

sets the height of task bars in the timeline area

number|string task_height;

Deprecated

The property is deprecated.

Example

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


Default value:

"full"
Details

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");
Change log

the task_height property has been deprecated in v7.1

Back to top