i have some tab-delimiter data in csv file, and i want to graph these data, and overlap the graph if possible. i'm currently doing this using excel, which is kinda slow when i have many graphs to make. i'm looking for ways to automate this, the data is generated thru some java process, so i would like to extend the process to graph the data. is there any good java library suited for this purpose? hopefully it's light-weight, open-source, and easy to start with.

thanks!

link|improve this question

43% accept rate
feedback

3 Answers

up vote 3 down vote accepted

JFreeChart seems to be recommended pretty often. It's used in JIRA to generate their charts.

link|improve this answer
feedback

JFreeChart

link|improve this answer
feedback

I frequently rely on H2 Database for this, as it has good CSV support; and I'll second @mcandre's and @BrennaSoft's suggestion of JFreeChart.

Addendum: The essential JFreeChart and H2 Database JARs weigh in at about 1.7 MB and 1.2 MB, respectively. H2 Database has a nice sample gallery and web start demo.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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