1. Change Bar Shape for a Gantt Chart jfree.orgShape BARSHAPE = new Polygon(new int[] { 12, 8, -8, -8, 8 }, new int[] { 0, 4, 4, -4, -4 }, 5);//arrow GanttRenderer renderer = new GanttRenderer(); CategoryItemLabelGenerator generator = new StandardCategoryItemLabelGenerator("{2}", ... |
2. Gantt Chart and Bar jfree.org |
3. Gantt Categories Don't Line Up With Bars jfree.orgHey all. I don't see anything else about this in the forum, and the example Gantt charts seem to look just fine. So what am I doing wrong? The category names on the domain axis don't line up with their corresponding bars in the graph. Also, when I add annotations to the graph the annotations line up with the category names ... |
4. BORDERLINES AROUND THE RECTANGULAR BAR IN THE GANTTCHART jfree.orgGantt Chart is generated for showing the technicians work details. suppose In a particular day Technician X having 4(four) duties, like from 8.00am-10.00am, 10.00am-12.00pm, 12.00pm-14.00pm,14.00pm-16.00pm,in this case what happens is all FOUR BARS for FOUR DUTIES are joining,and we are not able to differentiate between each bar, to avoid this i need to DRAW A RECTANGULAR BORDER LINE with any color ... |
5. Create Gantt Chart with multiple bars jfree.orgHello, i'm trying to create a Gantt Chart. The information that i show in the Chart is the 'ocupation' of a lot of machines in a manufactures. To create this chart i have to declare a IntervalCategoryDataset, then declare a variables: final TaskSeries s1 = new TaskSeries("First task"); Afther that, i add to the s1 TaskSeries a lot of machines whith ... |
6. Stacked Bar or Gantt Chart?? jfree.orgHi All, I'm working on a scheduling software and I would like to use JFreeChart for charts. I need to draw something similar to a gantt chart. I have a set of categories (each corresponding to a machine) and 4 kinds of tasks: production, long switch, short switch and repairing. I want that: - each of these 4 tasks has a ... |