Series.Points Method (PowerPoint)
Returns a collection of all the points in the series.
Version Information
Version Added: PowerPoint 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
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
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