I tried the product but with the first report I got an error : “Incorrect line direction”.
Here my code
AWDocxExporter exporter = new AWDocxExporter();
exporter.setExporterInput(new SimpleExporterInput(xpPrint));
ByteArrayOutputStream output = new ByteArrayOutputStream();
exporter.setExporterOutput(new SimpleOutputStreamExporterOutput(output));
SimpleDocxReportConfiguration config = new SimpleDocxReportConfiguration();
config.setFlexibleRowHeight(true); //Set desired configuration
exporter.setConfiguration(config);
exporter.exportReport();
byte[] result = output.toByteArray();
return result;
Tks