Hi,
Changing the Zoom level of the attached xlsx does not have an effect:
var workbook = new Workbook(“Zoom.xlsx”);
Worksheet ws = workbook.Worksheets[0];
ws.Zoom = 85; // Zoom is changed from 50 to 85
workbook.Worksheets.ActiveSheetIndex = 0;
workbook.Save(“ZoomChanged.xlsx”);
When opening the ZoomChanges.xlsx, the chart defaults to fit the window.
Best regards,
Edit: As a side-note, is there a way to set the Zoom level to ‘Fit selection’ like in Excel from within Aspose?