Search found 3 matches
- Sat May 05, 2007 7:10 pm
- Forum: JFreeChart
- Topic: Labels and tooltips generation methods in Gantt charts
- Replies: 0
- Views: 2577
Labels and tooltips generation methods in Gantt charts
Seems to me that they are not acting properly. Here is a code: IntervalCategoryDataset dataset = JCollisionAssignmentClass. createDistributionDataset(mainDistributionGraph, 0); JFreeChart chart = JCollisionAssignmentClass.createGanttChart( dataset); CategoryPlot plot = chart.getCategoryPlot(); Categ...
- Fri May 04, 2007 2:55 pm
- Forum: JFreeChart
- Topic: Text labels inside Gantt chart bars
- Replies: 3
- Views: 5200
- Thu May 03, 2007 8:35 am
- Forum: JFreeChart
- Topic: Text labels inside Gantt chart bars
- Replies: 3
- Views: 5200
Text labels inside Gantt chart bars
Hello! I have a simple Gantt chart here, that consists of a number of Tasks just like that: TaskSeries s1 = new TaskSeries("Planned Tasks"); Task newTask = new Task("Task" + String.valueOf(taskIndex), new SimpleTimePeriod(currentTime, currentTime + (int) distributionTime) ); s1.add(newTask) final Ta...