getTaskHeight

提供任务的可见高度

number getTaskHeight( [string | number id] );
idstring | number任务的 id
number指定任务的高度,或者如果未提供 id 参数,则返回任务的高度

Example

const height = gantt.getTaskHeight(); // -> 30

Back to top