1

I am trying to make an organizational chart/tree in Java. I tried using Prefuse, but its library was very buggy and I am a bit of a beginner with programming. I also looked into using google's chart tools, but it is JavaScript based. I need to use Java and not JavaScript because I need access to local files. How should I go about doing this?

davidVee
  • 61
  • 3
  • 13
  • What problems did you experience with [Prefuse](http://prefuse.org/)? Being a beginner, you are likely to experience issues regardless of what library(s) you are using. – Chris Dargis Jul 16 '12 at 17:53
  • Have you looked at this question? http://stackoverflow.com/questions/265777/what-is-the-best-open-source-java-charting-library-other-than-jfreechart – Rick Mangi Jul 16 '12 at 17:55
  • Almost every java file in the library had errors, and most of those I couldn't fix. Could that have something to do with the IDE I'm using? – davidVee Jul 16 '12 at 17:55
  • In what way did every java file in the library have errors? Perhaps you may want to ask questions about those. – Chris Dargis Jul 16 '12 at 17:56

2 Answers2

1

There is organisation chart component already implemented in Vaadin you can find and download it here

0

I haven't used Prefuse before but perhaps JGraphT may work for you, assuming your organizational chart can be modeled as a graph.

Talon876
  • 1,482
  • 11
  • 17