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
JSF Chart Creator & Radar Chart
-
- Posts: 3
- Joined: Wed Nov 26, 2008 11:03 am
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
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