Hi, we are having an issue in production where piecharts are converted incorrectly when using 22.3 version of Aspose.Words in .NET. I have attached the following document with the original docx document as well as the converted output PDF document. As you can see, all the color is missing from the piecharts.
Word to PDF problem with Piecharts.zip (60.4 KB)
I have look at the following post: Size and label issues with charts when converting to PDF
It seems that the issue is slightly different in my case.
I only have the license up to version 22.3 and cannot test with the newest version of Aspose.Words. Is there a problem with piechart conversion in general?
The code:
var document = new Aspose.Words.Document(stream);
var resourceName = "FileConverters.AsposeObjects.hyph_da_DK.dic";
Hyphenation.RegisterDictionary("da-DK", Util.ReadResourceFileAsStream(resourceName));
var saveOptions = new PdfSaveOptions{
Compliance = PdfCompliance.PdfA1a,
DisplayDocTitle = true,
CreateNoteHyperlinks = true,
CustomPropertiesExport = PdfCustomPropertiesExport.Metadata
};
memoryStream = new MemoryStream();
document.Save(memoryStream, saveOptions);
It would be great if you could take a look. Thank in advance.