Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Swing: Open source Gantt chart library [closed]

I'm looking for a good open source Gantt chart library for Java Swing. I tried JFreeChart but it is not able to draw subtask. I tried with SwiftGantt too. It is able to draw subtask, but it is a little unstable and the look and feel is not professional :(.

Can you recomends others?

Thanks in advance!

like image 269
nashuald Avatar asked Oct 20 '12 20:10

nashuald


2 Answers

JFreeChart provides Gantt Charts. Check out this link

like image 158
Goaler444 Avatar answered Nov 01 '22 03:11

Goaler444


This is most likely only a partial answer, but have you considered embedding a JavaFX chart in a JFXPanel? JavaFX has excellent chart making capabilities and is part of the standard Java 7 Runtime Environment. I believe that Gantt charts are, if not a built-in possibility, something that could be quickly implemented in a class.

like image 31
Michael Oberlin Avatar answered Nov 01 '22 04:11

Michael Oberlin