Chart.PlotArea Property (Word)
Returns the plot area of a chart. Read-only PlotArea.
Version Information
Version Added: Word 2007
Syntax
expression .PlotArea
expression A variable that represents a Chart object.
Example
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