Using JasperReports we can use the property net.sf.jasperreports.export.xls.show.gridlines
in order to remove the gridlines in the exported excel file.
I'm looking for the same result in exported ODS files but can't find any corresponding property. Is there any option to achieve this goal?
Tried this code but it didn't work:
JROdsExporter exporter = new JROdsExporter();
SimpleOdsReportConfiguration config = new SimpleOdsReportConfiguration();
config.setShowGridLines(false);
exporter.setConfiguration(config);
exporter.exportReport();