理解 jfreechart 中的饼图
public static JFreeChart createPieChart(java.lang.String title,
PieDataset dataset,
boolean legend,
boolean tooltips,
boolean urls)
我想知道如何使用最后一个参数 url;
这意味着什么?
有什么例子吗?
配置图表生成 URL?这是什么意思?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过谷歌搜索,我找到了
ChartFactory
http://www.jfree.org/jfreechart/api/gjdoc/org/jfree/chart/ChartFactory-source.html查看使用的测试urls 是一个新的
StandardPieURLGenerator
实例jsfreechart 帮助告诉我们:
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/urls/PieURLGenerator.html
我希望这可以有所帮助。
By googling i found this code of the
ChartFactory
http://www.jfree.org/jfreechart/api/gjdoc/org/jfree/chart/ChartFactory-source.htmlLooking in the test of using urls there a instance of a new
StandardPieURLGenerator
The jsfreechart help tells:
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/urls/PieURLGenerator.html
I hope this can help.