The simplest Java diagram library?

Can someone please recommend a simple (as it is very easy to understand) graphics library for Java?

I just want to add a simple diagram to my program and thought that I could save some time by studying the library.

+4
source share
3 answers

JFreeChart is one of the best open source packages for java.

+8
source

A litte is deprecated, but still works and has free documentation (JFreeChart has only an API for free, devguide is saled) jCharts .

Sample code for Swing is available here , unless you need any fancy or special ones, it might be easier than JFreeChart because of the documentation available.

+2
source

JFreeChart is definitely the way to go. Although a guide (for sale) is useful if you are doing a great job using this, it is instructive to first check out this huge selection of examples (screenshots and code). This will give you 90% of what you need.

+1
source

All Articles