如何调用JFreeChart的打印选项
我有一个带有一些 JFreeCharts 的应用程序。当我右键单击它们时,默认选项之一是“打印”,因此我可以在纸上打印图表。
我想在我的应用程序主菜单“文件/打印”中复制该选项,但我不知道图表的哪个功能可以执行此操作,当我尝试在 JFreeChart 开发人员指南中查找此信息时,我得到了数百个系统.PRINTln 搜索时。
有什么帮助吗?
I have an application with some JFreeCharts. When I right-click them, one of the default options is "Print", so I can print the chart in paper.
I want to replicate that option in my application main menu, File/Print, but I don't know what function of the chart does this, and when I try to look for this information in the JFreeChart Developer Guide, I get hundreds of System.PRINTln when searching.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这将是 < createChartPrintJob() 方法href="http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/ChartPanel.html" rel="nofollow">
ChartPanel
。 (或者可能是print()
方法,具体取决于您想要执行的操作。)详细信息为 此处。
I believe that would be the
createChartPrintJob()
method withinChartPanel
. (Or perhaps theprint()
method, depending on what you want to do.)Details are here.