Hi, my chart does not appear on the doc after I update to Aspose.Word 9.4.0.
I am using Microsoft Chart and it was fine with previous version. Not sure about 9.3.0 though.
Because I did not test the chart portion after update to 9.3.0
Note that I am using MS Word 2003.
Below is the code snippet on how I insert the chart onto the doc.
----------------------------------------------------------------------------------------------------------------
c = new Chart();
ca = new ChartArea();
c.ChartAreas.Add(ca);
MemoryStream ms = new MemoryStream();
c.SaveImage(ms, ImageFormat.Emf);
builder.InsertImage(ms, Aspose.Words.Drawing.RelativeHorizontalPosition.Default, Convert.ToDouble(100),
Aspose.Words.Drawing.RelativeVerticalPosition.TopMargin, Convert.ToDouble(100),
Convert.ToDouble(600), Convert.ToDouble(400), Aspose.Words.Drawing.WrapType.None);
---------------------------------------------------------------------------
Please help and advice.
Thanks!