Skip to content

Latest commit

 

History

History
70 lines (36 loc) · 1.24 KB

PowerPoint.Series.Points.md

File metadata and controls

70 lines (36 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Series.Points method (PowerPoint)
vbapp10.chm65606
vbapp10.chm65606
PowerPoint.Series.Points
53bec845-d3a0-fdce-921b-66d2d4e1eb59
06/08/2017
medium

Series.Points method (PowerPoint)

Returns a collection of all the points in the series.

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

See also

Series Object

[!includeSupport and feedback]