ChartSeriesCollection object (Access)

A collection of all the ChartSeries objects in the specified chart.

Example

The following example displays the name of each ChartSeries instance in a collection.

With myChart
 For Each series In .ChartSeriesCollection
  MsgBox (series.Name)
 Next
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.