Hi,
When converting some charts from DOCX to PDF, we noticed the layout of the charts did not correctly reflect the original elements in the DOCX.
Code:
var doc = new Document(@".\test.docx");
doc.LayoutOptions.TextShaperFactory = HarfBuzzTextShaperFactory.Instance;
doc.Save(@".\out.pdf", new PdfSaveOptions() { OptimizeOutput = true });
I noticed on one chart the square blue points became round in the PDF, while on other charts the number of X-axis labels were wrong.
I’ve attached the test files for your reference. Could you please help to take a look?
test.zip (66.6 KB)
Thanks,