* [bug#58852,done,0.5h] Increase the height of the Gantt chart header.

This commit is contained in:
hufangzhou
2025-01-03 09:52:32 +08:00
committed by 谢杞钰
parent 95ab9838f6
commit f1ba400019
+2 -2
View File
@@ -59,9 +59,9 @@ function drawGanttToCanvas(exportType, successCallback, errorCallback)
let ganttDridWidth = $ganttDridData.width();
let ganttAreaWidth = $ganttDataArea.length > 0 ? $ganttDataArea.width() : 0;
let ganttHeadHeight = 40;
let ganttHeadHeight = 66;
let ganttRowHeight = $ganttView.find('.gantt_row').first().height() || 25;
let ganttHeight = ganttHeadHeight + (options['data'].length ? options['data'] .length : 0) * (ganttRowHeight + 3);
let ganttHeight = ganttHeadHeight + (options['data'].length ? options['data'].length : 0) * (ganttRowHeight + 3);
let ganttWidth = ganttDridWidth + ganttAreaWidth;
$ganttContainer.css(