Syntax
Private Sub Chart_Resize()
Enter
Code
End Sub
This event will run code when the chart is
resized.
Example
Private Sub myChartClass_Resize()
With
ActiveChart.Parent
.Left
= 100
.Top =
150
End
With
End Sub
Result
The following code example keeps the upper-left corner
of the chart at the same location when the chart is resized.