Share via


Chart.SeriesCollection Method

Word Developer Reference

Returns all the series in the chart.

Version Information
 Version Added:  Word 2007

Syntax

expression.SeriesCollection(Index)

expression   A variable that represents a Chart object.

Return Value
A SeriesCollection object that represents all the series in the chart.

Example

The following example turns on data labels for series one of the first chart in the active document.

Visual Basic for Applications
  With ActiveDocument.InlineShapes(1)
    If .HasChart Then
        .Chart.SeriesCollection(1).HasDataLabels = True
    End If
End With

See Also