Defect #33140
closed
Gantt bar is not displayed if the due date is the leftmost date or the start date is the rightmost date
Added by Jaebok Oh almost 5 years ago.
Updated over 4 years ago.
Description
If the start date and due date are 1st of the month, this will not be displayed.
Files
- Status changed from New to Confirmed
- Affected version changed from 4.1.0 to 4.0.6
- Subject changed from If the start date and due date are 1st of the month, this will not be displayed. to Gantt bar is not displayed if the start date and the due date are the first day of the month
- Subject changed from Gantt bar is not displayed if the start date and the due date are the first day of the month to Gantt bar is not displayed if the due date is the first day of the month
With the following patch, the Gantt bar is displayed if the due date is the first day of the Gantt or the start date is the last day of the Gantt.
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb
index 285eb66a0..e4663e08e 100644
--- a/lib/redmine/helpers/gantt.rb
+++ b/lib/redmine/helpers/gantt.rb
@@ -623,7 +623,7 @@ module Redmine
def coordinates(start_date, end_date, progress, zoom=nil)
zoom ||= @zoom
coords = {}
- if start_date && end_date && start_date < self.date_to && end_date > self.date_from
+ if start_date && end_date && start_date <= self.date_to && end_date >= self.date_from
if start_date > self.date_from
coords[:start] = start_date - self.date_from
coords[:bar_start] = start_date - self.date_from
- Target version set to Candidate for next minor release
- Target version changed from Candidate for next minor release to 4.0.8
Setting the target version to 4.0.8.
- Subject changed from Gantt bar is not displayed if the due date is the first day of the month to Gantt bar is not displayed if the due date is the leftmost date or the start date is the rightmost date
- Status changed from Confirmed to Resolved
- Assignee set to Go MAEDA
- Resolution set to Fixed
- Status changed from Resolved to Closed
- Related to Defect #33175: Starting or ending marker is not displayed if they are on the leftmost or rightmost boundary of the gantt added
Also available in: Atom
PDF