title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Point.MarkerBackgroundColorIndex property (Excel) |
vbaxl10.chm576085 |
|
|
67201623-5c76-1983-1710-441d7e54b8a5 |
05/09/2019 |
medium |
Returns or sets the marker background color as an index into the current color palette, or as one of the following XlColorIndex constants: xlColorIndexAutomatic or xlColorIndexNone. Applies only to line, scatter, and radar charts. Read/write Long.
expression.MarkerBackgroundColorIndex
expression A variable that represents a Point object.
This example sets the marker background and foreground colors for the second point in series one on Chart1.
With Charts("Chart1").SeriesCollection(1).Points(2)
.MarkerBackgroundColorIndex = 4 'green
.MarkerForegroundColorIndex = 3 'red
End With
[!includeSupport and feedback]