Uma omissão surpreendente, não é?
Um pequeno VBA pode ajudar:
Sub SizePlotArea()
Dim oSld As Slide
Dim oCht As Chart
Set oCht = ActiveWindow.Selection.ShapeRange(1).Chart
With oCht.PlotArea
' Edit these values as needed
' Change the following lines to e.g. Msgbox .Left etc
' to get the values of the chart you want to match others TO
.Left = 50
.Top = 50
.Height = 400
.Width = 400
End With
End Sub
NOTA: As dimensões para .Left, .Top, etc. estão em Points, a unidade que o PPT usa para a maioria das funções programáveis. 72 pontos para a polegada.
Se preferir, você pode fazer algo como:
.Height = 72 * 5.25
para definir a altura de 5,25 polegadas.