A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I actually managed to work around it by using the following Macro:
Sub Macro4()
'
' Macro4 Macro
'
' Keyboard Shortcut: Ctrl+q
'
For Each objCht In ActiveSheet.ChartObjects
With objCht.Chart
.PlotArea.Width = 125
.PlotArea.Height = 125
.PlotArea.Left = 30
.PlotArea.Top = 100
End With
Next
End Sub