整个 xls 页面应以白色背景显示
我正在使用 iReport 3.7.0 并生成 Excel 格式的输出。我想显示没有网格视图的 xls 输出,即整个页面应显示为白色背景。我该怎么做?请帮我..
I'm using iReport 3.7.0 and generating an output in excel format.I want to show xls output with no grid view i.e whole page should appear with white background.How may I do that? please help me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,JasperReports/iReport 不可能做到这一点。也许是因为网格线不是单元格格式的一部分,而是它们是每个工作表的配置选项。
如果您从自己的应用程序导出 Excel 文件,您可以使用 Apache POI 进行自己的后处理:打开 .xls 文件,更改设置,保存文件。
必要的属性是 HSSFSheet。 setDisplayGridlines:
还要看看其他与网格相关的方法,其中一些可能也相关。
As far as I know this is not possible with JasperReports/iReport. Perhaps because the grid lines are not part of the cell format, instead they are a configuration option on a per-sheet basis.
In case you are exporting the Excel file from your own application, you can do your own postprocessing using Apache POI: Open the .xls file, change the setting, save the file.
The necessary property is HSSFSheet.setDisplayGridlines:
Also take a look at the other grid-related methods, some of them might be relevant, too.