Chart.PlotArea property (Word)

Returns the plot area of a chart. Read-only PlotArea.

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

See also

Chart Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.