Chart.ChartType (Word)
Retorna ou define o tipo de gráfico. O XlChartType de leitura/gravação.
Alguns tipos de gráficos não estão disponíveis para relatórios de gráfico dinâmico.
With ActiveDocument.InlineShapes(1).Chart
If .ChartType = xlBubble Then
.ChartGroups(1).BubbleScale = 200
End If
End With