public static JFreeChart createPieChart(java.lang.String title,
PieDataset dataset,
boolean legend,
boolean tooltips,
boolean urls)
I want to know about using the last parameter urls;
what does it means?
any example of it?
Configure chart to generate URLs? what does it mean?
By googling i found this code of the
ChartFactoryhttp://www.jfree.org/jfreechart/api/gjdoc/org/jfree/chart/ChartFactory-source.htmlLooking in the test of using urls there a instance of a new
StandardPieURLGeneratorThe jsfreechart help tells:
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/urls/PieURLGenerator.html
I hope this can help.