[Bug #1088] Fixed issue in earned value chart

As earned value is using
JustDaysWithInformationGraphicSpecificationCreator it's not needed to
print intervals but just one point so now it uses printLine instead of
printIntervalLine.

FEA: ItEr75S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2011-07-21 14:02:35 +02:00
parent ef9cad7e5a
commit ba6b685e19

View file

@ -304,7 +304,7 @@ public abstract class ChartFiller implements IChartFiller {
LocalDate lastDay) {
for (LocalDate day : getDays()) {
BigDecimal hours = getHoursForDay(day);
printIntervalLine(writer, day, hours, isZoomByDayOrWeek());
printLine(writer, day.toDateTimeAtStartOfDay(), hours);
}
}