Syntax

expression.MarkerBackgroundColor

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 in Chart1.

Visual Basic for Applications
With Charts("Chart1").SeriesCollection(1).Points(2) .MarkerBackgroundColor = RGB(0,255,0) ' green .MarkerForegroundColor = RGB(255,0,0) ' red End With

See also: