Chart.ChartArea Property (PowerPoint)
Returns the complete chart area for the chart. Read-only ChartArea.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .ChartArea
expression A variable that represents a Chart object.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
The following example sets the chart area interior color of the first chart in the active document to red and sets the border color to blue.
With ActiveDocument.InlineShapes(1).Chart.ChartArea
.Interior.ColorIndex = 3
.Border.ColorIndex = 5
End With