1

Possible Duplicate:
What is the best open-source java charting library? (other than jfreechart)

In my web application I need to present some charts. I create class where I used JFreeChart library, but this library is desktop library. I need some free web library. Can you help me?

Community
  • 1
  • 1
edi233
  • 3,511
  • 13
  • 56
  • 97
  • There is already a discussion for this [What is the best open-source java charting library?][1] [1]: http://stackoverflow.com/questions/265777/what-is-the-best-open-source-java-charting-library-other-than-jfreechart – Bagira Jan 18 '12 at 17:01

5 Answers5

3

Try the Google Chart Tools; the simple web service interface is easily usable via JavaScript for live graphics and the Google Chart API is great for Java (and other languages) for static images.

maerics
  • 151,642
  • 46
  • 269
  • 291
1

You can create chart for your web application by using JFreeChart as well. For more details go to following link: http://himtech-spring.blogspot.com/2012/07/spring-mvc-with-jfreechart.html

You can also create chart for web application using Google chart API. For this you need to construct an URL and send it to Google chart server for generating chart. Click here for Google chart integration with SpringMVC implementation

Eva Dias
  • 1,709
  • 9
  • 36
  • 67
0

gRaphäel provides charts with a JavaScript API.

Mike Samuel
  • 118,113
  • 30
  • 216
  • 245
0

You can use kava charts in java. You can refer this link: http://www.kavachart.com/documentation/index.html

Sunny Gupta
  • 6,929
  • 15
  • 52
  • 80
0

Server side

Client side

Tomasz Nurkiewicz
  • 334,321
  • 69
  • 703
  • 674