ChartSeries.FillColor property (Access)

Returns or sets the fill color of a series visualization. Read/write String.

Use a system color constant or the RGB function as shown in the example.

Syntax

expression.FillColor

expression A variable that represents a ChartSeries object.

Example

The following example sets the border and fill color of the first series in a collection.

With myChart.ChartSeriesCollection.Item(0)
 .BorderColor = RGB(0, 0, 0)
 .FillColor = RGB(210, 250, 210)
End With

See also

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.