Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 828 Bytes

Excel.Chart.ChartArea.md

File metadata and controls

40 lines (25 loc) · 828 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.ChartArea property (Excel)
vbaxl10.chm149086
vbaxl10.chm149086
Excel.Chart.ChartArea
125d6176-b770-900b-8572-ce33b95ad897
04/16/2019
medium

Chart.ChartArea property (Excel)

Returns a ChartArea object that represents the complete chart area for the chart. Read-only.

Syntax

expression.ChartArea

expression A variable that represents a Chart object.

Example

This example sets the chart area interior color of Chart1 to red, and sets the border color to blue.

With Charts("Chart1").ChartArea 
 .Interior.ColorIndex = 3 
 .Border.ColorIndex = 5 
End With

[!includeSupport and feedback]