I am not able to download 3D surface chart as Image in latest version of Aspose.cells(22.12).
Its converted to 0Kb image.
- 3D surface chart
- Wireframe 3D surface chart
- Surface contour chart
- Wireframe contour chart.
Code:
using (MemoryStream st = new MemoryStream())
{
chart.RefreshPivotData();
chart.ToImage(st, ImageType.Png);
bytes = st.ToArray();
}
Thanks