Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.09 KB

Excel.Point.MarkerForegroundColorIndex.md

File metadata and controls

39 lines (25 loc) · 1.09 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Point.MarkerForegroundColorIndex property (Excel)
vbaxl10.chm576087
vbaxl10.chm576087
Excel.Point.MarkerForegroundColorIndex
00d5e240-0851-ea13-11a3-5972135ca5fa
05/09/2019
medium

Point.MarkerForegroundColorIndex property (Excel)

Returns or sets the marker foreground 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.

Syntax

expression.MarkerForegroundColorIndex

expression A variable that represents a Point object.

Example

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]