Chart.ChartTitle Property (PowerPoint)
Returns the title of the specified chart. Read-only ChartTitle.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .ChartTitle
expression A variable that represents a Chart object.
Remarks
The ChartTitle object does not exist and cannot be used unless the HasTitle property for the chart is True.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
The following example sets the text for the title of the first chart.
With ActiveDocument.InlineShapes(1).Chart
.HasTitle = True
.ChartTitle.Text = "First Quarter Sales"
End With