diff --git a/src/bonsai/bonsai/bim/data/webui/static/js/gantt.js b/src/bonsai/bonsai/bim/data/webui/static/js/gantt.js index 5eaaffa841..630571e63d 100644 --- a/src/bonsai/bonsai/bim/data/webui/static/js/gantt.js +++ b/src/bonsai/bonsai/bim/data/webui/static/js/gantt.js @@ -244,7 +244,7 @@ function addGanttElement(blenderId, tasks, workSched, filename) { vShowTaskInfoLink: 1, // Show link in tool tip (0/1) vShowEndWeekDate: 0, // Show/Hide the date for the last day of the week in header for daily vUseSingleCell: 10000, // Set the threshold cell per table row (Helps performance for large data. - vFormatArr: ["Day", "Week", "Month", "Quarter"], // Even with setUseSingleCell using Hour format on such a large chart can cause issues in some browsers, + vFormatArr: ["Hour", "Day", "Week", "Month", "Quarter"], // vUseSingleCell keeps Hour usable on large charts. vShowRes: true, // Disable the resource column. vShowComp: false, // Disable the completion column. vShowDur: false, // Disable the duration column, because jsgantt doesn't calculate durations the way we want. diff --git a/src/bonsai/bonsai/bim/module/sequence/gantt/index.js b/src/bonsai/bonsai/bim/module/sequence/gantt/index.js index 50eb49a8b6..768017bdf8 100644 --- a/src/bonsai/bonsai/bim/module/sequence/gantt/index.js +++ b/src/bonsai/bonsai/bim/module/sequence/gantt/index.js @@ -12,7 +12,7 @@ function create_gantt_chart(json_data) { vShowTaskInfoLink: 1, // Show link in tool tip (0/1) vShowEndWeekDate: 0, // Show/Hide the date for the last day of the week in header for daily vUseSingleCell: 10000, // Set the threshold cell per table row (Helps performance for large data. - vFormatArr: ['Day', 'Week', 'Month', 'Quarter'], // Even with setUseSingleCell using Hour format on such a large chart can cause issues in some browsers, + vFormatArr: ['Hour', 'Day', 'Week', 'Month', 'Quarter'], // vUseSingleCell keeps Hour usable on large charts. vShowRes: true, // Disable the resource column. vShowComp: false, // Disable the completion column. vShowDur: false, // Disable the duration column, because jsgantt doesn't calculate durations the way we want.