First question :
Is it normal that when I use multiple task per line, the first task is not visible, ex :
Code: Select all
TaskSeries taskseries = new TaskSeries("Project 1");
Task t = new Task("First Person", new SimpleTimePeriod(date(1, 3, 2003), date(3, 3, 2003)));
t.addSubtask(new Task("", new SimpleTimePeriod(date(7, 3, 2003), date(15, 3, 2003))));
t.addSubtask(new Task("", new SimpleTimePeriod(date(18, 3, 2003), date(25, 3, 2003))));
t.addSubtask(new Task("", new SimpleTimePeriod(date(7, 6, 2003), date(18, 6, 2003))));
taskseries.add(t);
Second question
How can we add null or empty SimpleTimePeriod, or an null or empty Task, because I use the JFreeChart to generate graph in order to see all task by project/date (the tasks represents in this case the teams), and by project, we can add differents persons who have work on.
I hope to be clear with these ideas.
Best regards,
Damien