MarkerForegroundColorIndex Property
Applies To
LegendKey object, Point object, Series object.
Description
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.
See Also
Colors property, MarkerBackgroundColorIndex property, MarkerForegroundColor property, MarkerStyle property.
Example
This example sets the marker background and foreground colors for the second point in series one in Chart1.
With Charts("Chart1").SeriesCollection(1).Points(2)
.MarkerBackgroundColorIndex = 4 'Green.
.MarkerForegroundColorIndex = 3 'Red.
End With