Applies To
LegendKey Object, Point Object, Series Object.
Description
Returns or sets the marker background color as an index into the current color palette (a value from one to 56, or xlNone if there is no background color). Line, scatter and radar charts only. Read-write.
See Also
Colors Property, MarkerBackgroundColor Property, MarkerForegroundColorIndex Property, MarkerStyle Property.
Example
This example sets the marker background and foreground color for the second point in series one in Chart1.
With Charts("Chart1").SeriesCollection(1).Points(2) .MarkerBackgroundColorIndex = 4 'green .MarkerForegroundColorIndex = 3 'red End With