April 2006
Beginner
1114 pages
98h 16m
English
chart.ChartTitle
Returns the ChartTitle object representing the title displayed on the chart. Make sure the HasTitle property is True before using this object. For example, the following code adds a title to a chart:
Sub AddTitle( )
Dim chrt As Chart, ct As ChartTitle
Set chrt = Charts("New Chart")
chrt.HasTitle = True
Set ct = chrt.ChartTitle
ct.Caption = "New Title"
End SubRead now
Unlock full access