Points Collection Object

Description

A collection of all the Point objects in the specified series in a chart.

Accessors

Use the Points method with an argument to access a single member of the collection or without an argument to access the entire collection at once. The following example adds a data label to the last point on series one.


Dim pts As Points
Set pts = Worksheets(1).ChartObjects(1).Chart. _
    SeriesCollection(1).Points
pts(pts.Count).ApplyDataLabels type:=xlShowValue

Properties

Application Property, Count Property, Creator Property, Parent Property.

Methods

Item Method.