Chart.PlotArea Property (PowerPoint)
Returns the plot area of a chart. Read-only PlotArea.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .PlotArea
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 color of the plot area interior for the first chart in the active document to cyan.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.PlotArea.Interior.ColorIndex = 8
End If
End With