A
Andy Pope
Hi,
Manually: select chart ad simply type some text. When you it enter a
textbox will be added.
VBA:
Sub y()
Dim objX As Shape
Set objX = ActiveChart.Shapes. _
AddTextbox(msoTextOrientationHorizontal, 1, 1, 70, 15)
objX.TextFrame.Characters.Text = "Hello World"
End Sub
Cheers
Manually: select chart ad simply type some text. When you it enter a
textbox will be added.
VBA:
Sub y()
Dim objX As Shape
Set objX = ActiveChart.Shapes. _
AddTextbox(msoTextOrientationHorizontal, 1, 1, 70, 15)
objX.TextFrame.Characters.Text = "Hello World"
End Sub
Cheers