PlotArea object (Excel Graph)

Represents the plot area of the specified chart. This is the area where your chart data is plotted.

Remarks

The plot area in a 2D chart contains the data markers, gridlines, data labels, trendlines, and optional chart items placed in the chart area.

The plot area in a 3D chart contains all the above items plus the walls, floor, axes, axis titles, and tick-mark labels in the chart.

The plot area is surrounded by the chart area. The chart area in a 2D chart contains the axes, the chart title, the axis titles, and the legend. The chart area in a 3D chart contains the chart title and the legend. For information about formatting the chart area, see the ChartArea object.

Use the PlotArea property to return the PlotArea object.

Example

The following example places a dashed border around the chart area and places a dotted border around the plot area.

With myChart 
 .ChartArea.Border.LineStyle = xlDash 
 .PlotArea.Border.LineStyle = xlDot 
End With

See also

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.