Aspose.Words throws a DivideByZero exception when trying to save to html stream OR when trying do use UpdatePageLayout on a word document containing a chart with all zeroes in axis. We are using Aspose.Words 19.7
This is the sample code:
Document doc = new Document(@"C:\Tests\FirstSample3.docx");
var xhtmlDocumentStream = new MemoryStream();
doc.Save(xhtmlDocumentStream, new Aspose.Words.Saving.HtmlSaveOptions { ImagesFolder = @"C:\Tests"});
//doc.UpdatePageLayout();
Chart.zip (18.4 KB)