Series.Points Method

Excel Developer Reference

Returns an object that represents a single point (a Point object) or a collection of all the points (a Points collection) in the series. Read-only

Syntax

expression.Points(Index)

expression   An expression that returns a Series object.

Parameters

Name Required/Optional Data Type Description
Index Optional Variant The name or number of the point.

Return Value
Object

Example

This example applies a data label to point one in series one in Chart1.

Visual Basic for Applications
  Charts("Chart1").SeriesCollection(1).Points(1).ApplyDataLabels

See Also