JSF Chart Creator & Radar Chart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
ptn_gaye@yahoo.fr
Posts: 3
Joined: Wed Nov 26, 2008 11:03 am

JSF Chart Creator & Radar Chart

Post by ptn_gaye@yahoo.fr » Wed Nov 26, 2008 11:25 am

Hi!
I'm use JSF and I have to display many chart on my pages.
Do you know if Chart Creator support radar chart ? Can you give me an example of use?

Thanks

ptn_gaye@yahoo.fr
Posts: 3
Joined: Wed Nov 26, 2008 11:03 am

Post by ptn_gaye@yahoo.fr » Wed Nov 26, 2008 4:36 pm

No answer? :D
Does nobody use radar chart with jsf?

I assume that you are busy. But I hope you'll take few minute to help me. There are many sample related to other chart (pie..) but I do not see any example/doc about radar chart. Maybe

Thank for your replies.

dand
Posts: 3
Joined: Thu Nov 27, 2008 4:58 pm

Post by dand » Sat Nov 29, 2008 3:31 pm

I basically have a same issue.
I'm new with all this (JSF, JFreeChart, ChartCreator...) so may be too naive in the thinking. However, it would be nice if we have a JSF tag that works as follows:

<c:chart id="chart1" img="#{SomeClass.aChart}">

And in my backing bean:

JFreeChart aChart;

JFreeChart getAChart() {
JFreeChart chart;
... Create whatever chart we have to create here
return chart;
}


The tag is just a passthrough mechanism to use JFreeChart in JSF

Locked