Remarks

The ChartObject object acts as a container for a object. Properties and methods for the ChartObject object control the appearance and size of the embedded chart on the worksheet. The ChartObject object is a member of the collection. The ChartObjects collection contains all the embedded charts on a single sheet.

Use ChartObjects(), where is the embedded chart index number or name, to return a single ChartObjectobject.

Example
The following example sets the pattern for the chart area in embedded Chart 1 on the worksheet named "Sheet1."

Visual Basic for Applications
Worksheets("Sheet1").ChartObjects(1).Chart. _ ChartArea.Format.Fill.Pattern = msoPatternLightDownwardDiagonal

The embedded chart name is shown in the Name box when the embedded chart is selected. Use the property to set or return the name of the ChartObject object. The following example puts rounded corners on the embedded chart named "Chart 1" on the worksheet named "Sheet1."

Visual Basic for Applications
Worksheets("sheet1").ChartObjects("chart 1").RoundedCorners = True
ChartObject Object

See also:

index index