Search found 3 matches

by kamal
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...
by kamal
Tue Mar 25, 2008 3:12 pm
Forum: JFreeChart
Topic: Web Application ChartsTooltips
Replies: 5
Views: 6525

Thanks you for the reply David, it would be nice if you can include a sample code in the developer guide. Can you please post a code snip it or send me a simple example showing how to add tooltips to a web application.
by kamal
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...