Series.Points Method (Word)
Returns a collection of all the points in the series.
Version Information
Version Added: Word 2007
Syntax
expression .Points(Index)
expression A variable that represents a Series object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Index |
Optional |
Variant |
The name or number of the point. |
Return Value
A Points object that represents all the points in the series.
Example
The following example applies a data label to point one in series one of the first chart in the active document.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).Points(1).ApplyDataLabels
End If
End With