Search found 2 matches
- Wed Nov 01, 2006 5:05 pm
- Forum: JFreeChart
- Topic: Line Chart in JSF
- Replies: 1
- Views: 4499
Re: Line Chart in JSF
Hi, Try this: Java Bean: import org.jfree.data.general.DefaultKeyedValues2DDataset; public class ChartBean { public DefaultKeyedValues2DDataset getLineDataSet() { DefaultKeyedValues2DDataset dataset = new DefaultKeyedValues2DDataset(); String series1 = "First"; String series2 = "Second"; String seri...
- Tue Oct 31, 2006 6:24 pm
- Forum: JFreeChart
- Topic: JSF Chart Creator
- Replies: 89
- Views: 397812
Image does not appear when a title attribut is used
Hello, I had some troubles to get the ChartCreator component to work. I used the sample from the website. Everything worked fine, i got no exceptions but the chart did not appear. The solution for this problem was to remove the title attribute inside the jsf tag. With the following code on the jsp s...