throws IOException {
if (isExportingToExcel())
return;
int numRows = timeInPhase.size() - 1;
ResultSet plan = new ResultSet(numRows, 1);
ResultSet actual = new ResultSet(numRows, 1);
int row = 0;
for (Entry<String, DataPair> e : timeInPhase.entrySet()) {
if (++row > numRows)
break;
plan.setRowName(row, e.getKey());
plan.setData(row, 1, new DoubleData(e.getValue().plan));
actual.setRowName(row, e.getKey());
actual.setData(row, 1, new DoubleData(e.getValue().actual));
}
out.print("<p>\n");
writeChart("Plan", "Estimated_Time", plan);
out.print(" ");
writeChart("Actual", "Time", actual);