Hi,
Using aspose cells for java, version 22.12.
While converting excel into pdf, the x-axis is missing in the pdf export.fullTemplate_ExcelParser (1).xlsx.zip (150.9 KB)
we can see the x-axis being plotted in the excel file attached but while converting it to pdf, it is missing.
Workbook workbook = new Workbook(“f:\files\fullTemplate_ExcelParser.xlsx”); workbook.calculateFormula(); workbook.save(“f:\files\excel_after_remove_sheet1.xlsx”);
workbook = new Workbook(“f:\files\excel_after_remove_sheet1.xlsx”);
workbook.save(“f:\files\out1.pdf”, SaveFormat.PDF);
ByteArrayOutputStream dstStream = new ByteArrayOutputStream();
workbook.save(dstStream, SaveFormat.PDF);