i am looking to build nice charts with java !

i am implementing a jsp application and i am looking for packages that allows me to build some nice charts in java using data retrieved from my database . I tried free jspChart but is does not give me nicest jpeg pics that i could insert in my jsp file.

So i am looking for another free package that allow me to have nice and parametrable pics sothat i can modify colors , backgrounds and so on !!

thanks

[424 byte] By [Ramazottia] at [2007-9-19]
# 1

Take a look at JFreeChart:

http://www.object-refinery.com/jfreechart/index.html

It is free (GNU LGPL) and can be used to generate many different chart types.

Regards,

Dave Gilbert

www.object-refinery.com

P.S. I wouldn't recommend JPEG as an image format for charts. You will get better quality results using PNG.

david.gilberta at 2007-7-8 > top of java,Security,Cryptography...
# 2
does it generate a specefic image format? i mean jpeg or gif that i can insert in my jsp file?
Ramazottia at 2007-7-8 > top of java,Security,Cryptography...
# 3
It has built in support for PNG and JPEG (the latter because someone wanted it, I still wouldn't recommend using JPEG). GIF would be very easy to add...Dave Gilbertwww.object-refinery.com
david.gilberta at 2007-7-8 > top of java,Security,Cryptography...
# 4
You can use RChart: http://www.java4less.com/charts_e.htmit supports more than 20 types of charts and has a Visual Tool for designing the charts. It can be used as Applet , Servlet or Bean.
rreporta at 2007-7-8 > top of java,Security,Cryptography...
# 5
Maybe you should try Cewolf which is a chart tag library to generate all kinds of charts in a JSP. See http://cewolf.sourceforge.net.Regards,Guido
lauresa at 2007-7-8 > top of java,Security,Cryptography...