ChartSeries.ParetoLineColor property (Access)
Returns or sets the line color for a Pareto Modern Chart (only available in Current Channel). Read/write String.
Use a system color constant or the RGB function as shown in the example.
Syntax
expression.ParetoLineColor
expression A variable that represents a ChartSeries object.
Example
The following example sets the Pareto line color of the first series in a collection.
With myChart.ChartSeriesCollection.Item(0)
.ParetoLineColor = 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.