MarkerForegroundColor Property

Applies To

LegendKey object, Point object, Series object.

Description

Returns or sets the foreground color of the marker as an RGB value. Applies only to line, scatter, and radar charts. Read/write Long.

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