Syntax

expression.Chart

expression A variable that represents a ChartObject object.

Example

This example adds a title to the first embedded chart on Sheet1.

Visual Basic for Applications
With Worksheets("Sheet1").ChartObjects(1).Chart .HasTitle = True .ChartTitle.Text = "1995 Rainfall Totals by Month" End With

See also: