VBAの例です。
該当グラフに下記コードを「マクロの登録」してください。
取りあえずそれらしき動作をすると思います。
(例1)
Dim cht As Shape
Set cht = ActiveSheet.Shapes(Application.Caller)
With cht.Chart
With .ChartGroups(1)
.SecondPlotSize = 20
Do While .SecondPlotSize < 100
.SecondPlotSize = .SecondPlotSize + 10
Application.wait Now + TimeValue("00:00:01")
Loop
End With
End With
お礼
ありがとうございました。