Firoz Gandhi
Firoz Gandhi

Reputation: 139

How to show data graphically in Java?

I am developing an application in Java. I got a requirement to show data in graphical form. In ASP.NET we can use Chart Controls to show data graphically. Likewise, how can we show the data graphically in Java. I am using Eclipse Ganymede. How to show data graphically from a database.

Upvotes: 0

Views: 2183

Answers (2)

Vincent Labatut
Vincent Labatut

Reputation: 1808

There are many such libraries, some of them listed in various SO posts such as JAVA Library for charts- JFreeChart?.

I personally used Gral to draw some simple plots, it was perfect for my purposes. There are some examples of the look and feel on their web site.

Upvotes: 3

Sandy
Sandy

Reputation: 1012

There are several free java apis available to show data graphically in the form of charts like: For Java standalone application you can use jFreeChart

http://www.jfree.org/jfreechart/devguide.html

for java web application you can use highcharts(for non-comercial use)

http://www.highcharts.com/

Upvotes: 1

Related Questions