ChartTitle object (PowerPoint)

Represents the chart title.

Remarks

Use the ChartTitle property to return the ChartTitle object.

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 adds a title to the first embedded chart in the document.

With ActiveDocument.InlineShapes(1).Chart

    .HasTitle = True

    .ChartTitle.Text = "February Sales"

End With

See also

PowerPoint Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.