Hi,
I'm having another issue saving sheets that contains charts to pdf.
The chart in the pdf file looks different than the origunal chart in the excel file.
In this case the vertical axys is inverted, the horizontal axys changed the scale and not all values are shown in the pdf.
The sample files are attached: the excel workbook, the pdf generated by aspose and the pdf generated by excel.
The code that generated the excel file is:
string filePath = "mypath";
Workbook workbook = new Workbook(filePath);
workbook.Save(filePath + ".out.pdf", SaveFormat.Pdf);
Thank you.