Search found 3 matches
- Fri Sep 19, 2008 4:27 pm
- Forum: JFreeChart
- Topic: JSF Chart Creator
- Replies: 0
- Views: 1638
JSF Chart Creator
Hello, I am using JSF Chart Creator component and would like to set the axis range , is there a way to do that using the tag library. NumberAxis domainAxis = (NumberAxis) plot.getDomainAxis(); domainAxis.setRange(-10.0, 10.0); NumberAxis rangeAxis = (NumberAxis) plot.getRangeAxis(); rangeAxis.setRan...
- Tue Mar 25, 2008 3:12 pm
- Forum: JFreeChart
- Topic: Web Application ChartsTooltips
- Replies: 5
- Views: 6525
- Mon Mar 24, 2008 8:41 pm
- Forum: JFreeChart
- Topic: Web Application ChartsTooltips
- Replies: 5
- Views: 6525
Web Application ChartsTooltips
How do I display tooltips on a chart generated via servlet on a web page. BubbleChart bubbleChart = new BubbleChart(); JFreeChart chart = bubbleChart.createChart(new SampleXYZDataset()); ChartUtilities.writeChartAsPNG(out, chart, 400, 300); I searched the forum but can't find details, also i have th...