Adicione isso à sua apresentação, salve-o como PPTM e selecione cada um dos gráficos; Inserir | Ação | Executar macro: ResizeMe
Você deve verificar se os gráficos são proporcionais ao tamanho do slide para começar (ou modificar as linhas que definem o gráfico para tela inteira para usar diferentes proporções).
Você também desejará ter certeza de que a proporção do aspecto do gráfico não está definida como Bloqueada.
Sub ResizeMe(oSh As Shape)
With oSh
' Is the shape full screen or normal?
If .Left = 0 Then ' it's full screen
.Left = CSng(.Tags("Left"))
.Top = CSng(.Tags("Top"))
.Height = CSng(.Tags("Height"))
.Width = CSng(.Tags("Width"))
Else ' it's small; biggify it:
' first, record it's small coordinates:
.Tags.Add "Left", CStr(.Left)
.Tags.Add "Top", CStr(.Top)
.Tags.Add "Height", CStr(.Height)
.Tags.Add "Width", CStr(.Width)
' now make it full screen
.Left = 0
.Top = 0
.Height = ActivePresentation.PageSetup.SlideHeight
.Width = ActivePresentation.PageSetup.SlideWidth
End If
End With
End Sub