Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

best opensource graph API to integrate with java

Tags:

java

Suggest me a best opensource graph API to integrate with java application. Basically it collects and stores some data.This collected data should be drawn in a graph like mothly average of data flow , weekly average ...The API should support extensive graph types like bar chart,pie chart , custom chart etc.,

like image 731
Sidharth Avatar asked Dec 06 '22 04:12

Sidharth


2 Answers

I have used the JFreeChart library for my charting needs. You still need to take care of storing the data yourself, though.

like image 64
andri Avatar answered Dec 12 '22 16:12

andri


JFreeChart is definitely a good one. You might find the following resources useful on understanding how to get started.

Gantt Chart http://sanjaal.com/java/?p=343

3D Category Bar Chart http://sanjaal.com/java/?p=321

3D Pie Chart http://sanjaal.com/java/?p=318

Go through the API documentations. You will definitely find it worth using.

like image 33
Kushal Paudyal Avatar answered Dec 12 '22 16:12

Kushal Paudyal