Why are there not more opensource easy to use charting libraries for Java?. The only successful opensource project in this area seems to be jfreechart, and it doesn't even have any documentation or examples available.

link|improve this question
feedback

closed as not constructive by casperOne Dec 12 '11 at 17:24

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

10 Answers

up vote 13 down vote accepted

There is charts4j which is a charts and graphs API. It enables developers to programmatically create the charts available in the Google Chart API through a straightforward and intuitive Java API.

Disclaimer: I wrote charts4j. We will be doing another major release in the next few weeks.

link|improve this answer
2  
Good job! The only downside is the need for an internet conection, though I cant remenber when was the last time I was disconnected. ;-) – fccoelho Nov 6 '08 at 8:01
8  
@pyinsci: some shops prevent servers from connecting to external internet servers (even if the servers are reachable from the internet) for security reasons. – Joachim Sauer May 17 '10 at 13:36
feedback

There aren't a lot of them because they would be in competition with JFreeChart, and it's awesome. You can get documentation and examples by downloading the developer's guide. There are also tons of free online tutorials like this one, if you just search for them.

link|improve this answer
1  
One very useful contribution to jfreechart was a simple API That would allow you the generate a plot with a simple function call like so: plot(array) and get a chart object in return which you could futher customize, i.e. add a title, gridlines, etc... – fccoelho Nov 6 '08 at 8:08
feedback

Good question, I was just looking for alternatives to JFreeChart myself the other day. JFreeChart is excellent and very comprehensive, I've used it on several projects. My recent problem was that it meant adding 1.6mb of libraries to a 50kb applet, so I was looking for something smaller.

The JFreeChart FAQ itself lists alternatives. Compared to JFreeChart, most of them are pretty basic, and some pretty ugly. The most promising seem to be the Java Chart Construction Kit and OpenChart2.

I also found EasyCharts, which is a commercial product but seemingly free to use in some circumstances.

In the end, I went back to the tried and trusted JFreeChart and used Proguard to butcher it into a more manageable size.

I suggest that you take another look at JFreeChart. The user guide is only available to buy, but the demo shows what is possible and it's pretty easy to work out how from the API documentation. Basically you start with the ChartFactory static methods and plug the resultant JFreeChart object into a ChartPanel to display it. If you get stuck, I'm sure you'll get some quick answers to your problems on StackOverflow.

link|improve this answer
feedback

EasyCharts is commercial so i couldn't use it for my project. I used the GRAL graphing library instead. I found it very easy to customize and it's licensed under LGPL just like JFreeChart, so you can use it for free:

http://trac.erichseifert.de/gral

link|improve this answer
feedback

There is JChart which is all open source. I'm not sure exactly what you are graphing and how you are graphing it (servlets, swing, etc) so I would say just look at a couple different ones and see which works for you.

http://sourceforge.net/projects/jchart/

I've also used JGraph but I've only used their commercial version. They do offer an open source version however:

http://www.jgraph.com/

link|improve this answer
feedback

There is a new charting library in town: JChartlib JChartLib http://freshmeat.net/projects/jchartlib

link|improve this answer
It looks great!! Lightweight and no dependencies, wow, nice work. I took a look at the the wiki, pretty straightforward. My question: does it allow categories instead of numeric values on the X axis? – Albert Cossi Sep 19 '11 at 22:26
I tried it and noticed it's in a very early stage, it just prints up to 2 series, and just line charts, but still in a very simple way, keep up the good work! – Albert Cossi Sep 20 '11 at 14:45
2  
Wow, cool thanks for comment. The number of series are actually not limited in the linecharts. It draws as many charts as you like. I just released a new version that is able to save the chart to a jpg or png file. More chart type like barchart, cakechart, radarchart and so on are in the planning. – suvi Sep 23 '11 at 15:02
feedback

I've used EasyCharts in the past and it lived up to it's name. It's not as powerful as JFreeChart, but the JAR for EasyCharts is much smaller than for JFreeChart.

link|improve this answer
feedback

You can try Jzy3d. It helps drawing simple 3d charts (surfaces, scatters, bars, etc), and has lot of options for customizing layout of axes, ticks, etc. There are lot of examples and a documentation on the wiki.

It's free and open source.

Cheers,

Martin

link|improve this answer
feedback

For dynamic 2D charts, I have been using JChart2D. It's fast, simple, and being updated regularly. The author has been quick to respond to my one bug report and few feature requests. We, at our company, prefer it over JFreeChart because it was designed for dynamic use, unlike JFreeChart.

link|improve this answer
feedback

I found this framework: jensoft sw2d, free for non commercial use (dual licensing)

http://www.jensoft.org

regards.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.