Re: [Wicket-user] jfreechart and wicket

2006-09-13 Thread Anders Peterson
I'm using jfreechart with both Wicket and WebObjects - there isn't much you have to do. I created a class ChartResource that extends DynamicImageResource. In that class I have this: protected byte[] getImageData() { JFreeChart tmpChart = this.getFactory().getChart(); tm

Re: [Wicket-user] jfreechart and wicket

2006-09-12 Thread Erik Brakkee
Decebal Suiu wrote: > Any example about how to display a chart generated > with jfreechart in a WebPage? > I am going to do the same for my application (trackdetective.com) for displaying height profiles of GPS tracks. Just browsed a little through the APIs. It seems you can use the Image class.

[Wicket-user] jfreechart and wicket

2006-09-12 Thread Decebal Suiu
Any example about how to display a chart generated with jfreechart in a WebPage? I found a link about this topic (http://www.nabble.com/JFreeChart-Experiment-tf1824840.html#a4977424) but the link containing the source code is broken. Thanks, Decebal __