cancel
Showing results for 
Search instead for 
Did you mean: 

Looking for a chart that doesn't use applet

Former Member
0 Kudos

I'm looking for recommendation on chart / graphing objects that DO NOT use the java applet to render the graph.

Basically we need a graph that generates an image on the fly using vector data, AND doesn't use a client side applet to generate the graph.

We tried the built in HTMLB chart and that needs an applet.

We also tried an open source package called "jchart", and that requires a jpg to be written to the file system. This is fine in a single server but when you are in a cluster you can't guarontee which node the image is written to.

Any suggestions would be GREATLY appreciated.

thx

-Sheldon

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

have a look at <a href="http://www.jfree.org/jfreechart/">JFreeChart</a>

or if you like to built custom graphics the <a href="http://xmlgraphics.apache.org/batik/">batik toolkit</a> might be useful, just create an scalable vector graphic (which is a vector graphic description language coded in xml), and export to jpeg/png.

regards

franz

reward points if useful

Answers (2)

Answers (2)

kai_gutenkunst
Active Contributor
0 Kudos

Using the charts created by the IGS could be an option for you. Create your data and customizing settings as XML and send it via HTTP to the IGS.

For further information download the SAP Chart Designer from SDN - Downloads - WebAS.

Regards, Kai

former_member187444
Participant
0 Kudos

JfreeChart is the best solution for you.

I used it,

download my source code that is developed under netbeans.

it is j2ee project.

<a href="http://erayince.com/chartj2ee.rar">download</a>

Former Member
0 Kudos

Thanks! This helped a lot!