MarkerForegroundColor Property

Applies To

LegendKey Object, Point Object, Series Object.

Description

Returns or sets the foreground color of the marker, specified as an RGB value. Line, scatter and radar charts only. Read-write.

See Also

MarkerBackgroundColor Property, MarkerForegroundColorIndex 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)
    .MarkerBackgroundColor = RGB(0,255,0)    ' green
    .MarkerForegroundColor = RGB(255,0,0)    ' red
End With