Hello,
When converting a Word document to a PDF, the charts are not properly converted.
Extra lines appear on the horizontal axis of each charts.
Thermo charts.docx (88.7 KB) → File to convert
Expected.pdf (41.6 KB) → Expected conversion
Result.pdf (55.3 KB) → File we have after converting to pdf
protected void ConvertToPdf(string wordFile)
{
Document doc = new Document(wordFile);
PdfSaveOptions options = new PdfSaveOptions()
{
SaveFormat = SaveFormat.Pdf,
};
doc.Save(Path.ChangeExtension(wordFile, ".pdf"), options);
}
We are using the latest version of Aspose.Word : 24.7.0
We’re developing a web application and your solution is being used by our application for customers who want to be able to preview and convert their files correctly.
Thanks in advance