Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simplest Java chart library? [closed]

Tags:

java

Could someone please recommend a simple (as in very easy to understand) charting library for Java?

I just want to add a simple chart into my program and figured I might save some time by learning a library.

like image 455
CodeJustin.com Avatar asked Dec 23 '22 09:12

CodeJustin.com


2 Answers

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

like image 145
ChssPly76 Avatar answered Jan 03 '23 08:01

ChssPly76


A litte outdated, but still working and with free documentation (JFreeChart has just the API for free, the devguide is saled) is jCharts.

A sample code for Swing is available here, if you don't need anything fancy or special it may be easier than JFreeChart because of the direct available documentation.

like image 34
Elmar Weber Avatar answered Jan 03 '23 07:01

Elmar Weber