MarkerBackgroundColor property (Excel Graph)

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

Syntax

expression.MarkerBackgroundColor

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets the marker background and foreground colors for the second point in series one.

With myChart.SeriesCollection(1).Points(2) 
 .MarkerBackgroundColor = RGB(0,255,0) ' green 
 .MarkerForegroundColor = RGB(255,0,0) ' red 
End With

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.