Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).HasDataLabels = True
End If
End With