ChartArea Property

Microsoft Excel Visual Basic

Returns a ChartArea object that represents the complete chart area for the chart. Read-only.

Example

This example sets the chart area interior color of Chart1 to red and sets the border color to blue.

With Charts("Chart1").ChartArea
    .Interior.ColorIndex = 3
    .Border.ColorIndex = 5
End With