Re: Tool for generating bar graphs with Java

2002-02-26 Thread James Richardson
Sergei Timofejev wrote: KavaChart http://www.aoindustries.com/docs/javachart/api/chart.package.html Or PopChart. http://www.corda.com. Its very quick, and produces svg, flash, and gif graphs. Its a breeze to set up, and accessibile via http or direct api. Cheers James

RE: Tool for generating bar graphs with Java

2002-02-26 Thread Bernard D'Have
I just saw this in [EMAIL PROTECTED]: http://sourceforge.net/projects/jcharts/ It's LGPL licence Bernard -Original Message- From: Roland [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 16:33 To: [EMAIL PROTECTED] Subject: Tool for generating bar graphs with Java

Re: Tool for generating bar graphs with Java

2002-02-25 Thread fred redf
Hi, What do you want exactly to do? If you want to draw that kind of graph in a pdf doc, you should have a look at svg in fop. If you want to generate xml files describing datas, you can have a look at staroffice which generates xml files that you can clean with an xsl. Hope this helps, Fred.

RE: Tool for generating bar graphs with Java

2002-02-25 Thread Sergei Timofejev
KavaChart http://www.aoindustries.com/docs/javachart/api/chart.package.html -Original Message- From: Roland [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 5:33 PM To: [EMAIL PROTECTED] Subject: Tool for generating bar graphs with Java Hello, does anyone here know of a

Re: Tool for generating bar graphs with Java

2002-02-25 Thread Paul . Hussein
Inside or outside browser ? Roland [EMAIL PROTECTED] on 25/02/2002 16:02:51 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Tool for generating bar graphs with Java Hello, does anyone here know of a good tool to generate bar graphs, line graphs, pie charts,

Re: Tool for generating bar graphs with Java

2002-02-25 Thread Louis . Masters
It's pretty easy to write your own in Java - took about a day for pie and bar. We use the JPEG encoder to create a physical image file. The only issue we are having is the quality of the JPEG images when rendered in Adobe. Let me know if you want some code snippets. -Lou Roland [EMAIL

Re: Tool for generating bar graphs with Java

2002-02-25 Thread fred redf
Why don't you generate svg instead of jpeg? --- [EMAIL PROTECTED] a écrit : It's pretty easy to write your own in Java - took about a day for pie and bar. We use the JPEG encoder to create a physical image file. The only issue we are having is the quality of the JPEG images when

Re: Tool for generating bar graphs with Java

2002-02-25 Thread Jim Wright
...or, go buy kavachart! We use it -- I think it was only about $100 at the time, so it's fairly cheap. Generates pngs, jpegs, etc, that you can pretty easily imbed inside of your fop stuff. just a thought. jw [EMAIL PROTECTED] wrote: It's pretty easy to write your own in Java - took about

Re: Tool for generating bar graphs with Java

2002-02-25 Thread Roland
At 04:36 PM 2/25/02 +0100, fred redf wrote: Hi, What do you want exactly to do? If you want to draw that kind of graph in a pdf doc, you should have a look at svg in fop. I want to generate GIF files from Javacode. I should not be an applet but a standalone application... Best regards, Roland

Re: Tool for generating bar graphs with Java

2002-02-25 Thread Louis . Masters
PROTECTED] on 02/25/2002 11:13:19 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Re: Tool for generating bar graphs with Java Why don't you generate svg instead of jpeg? --- [EMAIL PROTECTED] a écrit : It's pretty easy to write your own in Java - took about a day

Re: Tool for generating bar graphs with Java

2002-02-25 Thread Robert Marcano
This tool ganerates many types of graphics, it is not related to FOP or any xml technology http://chart2d.sourceforge.net/ Roland wrote: At 04:36 PM 2/25/02 +0100, fred redf wrote: Hi, What do you want exactly to do? If you want to draw that kind of graph in a pdf doc, you should have a

RE: Tool for generating bar graphs with Java

2002-02-25 Thread Michiel Verhoef
You can do that with batik, using SVG (Scalable Vector Graphics). AFAIK batik is included in fop. HTH, Michiel $ -Original Message- $ From: Roland [mailto:[EMAIL PROTECTED]] $ Sent: maandag 25 februari 2002 16:33 $ To: [EMAIL PROTECTED] $ Subject: Tool for generating bar graphs with