Index: gantt.rb =================================================================== --- gantt.rb (revision 113) +++ gantt.rb (revision 1899) @@ -317,7 +318,9 @@ options[:g_width] ||= (self.date_to - self.date_from + 1) * options[:zoom] coords = coordinates(version.start_date, version.due_date, version.completed_percent, options[:zoom]) - label = "#{h version } #{h version.completed_percent.to_i.to_s}%" + # Fix completed percent rounded instead of truncated + label = "#{h version } #{h version.completed_percent.to_f.round}%" label = h("#{version.project} -") + label unless @project && @project == version.project case options[:format]