title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Chart.ChartArea property (Excel) |
vbaxl10.chm149086 |
|
|
125d6176-b770-900b-8572-ce33b95ad897 |
04/16/2019 |
medium |
Returns a ChartArea object that represents the complete chart area for the chart. Read-only.
expression.ChartArea
expression A variable that represents a Chart object.
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
[!includeSupport and feedback]