图表中指定系列内所有 Point 对象的集合。
备注
使用 Points 方法可返回 Points 集合。
使用 Points (索引) (其中 index 是点的索引号)返回单个 Point 对象。 在系列中按从左至右的顺序对 Points 进行编号。 Points(1)是最左侧的点,  Points(Points.Count)是最右侧的点。
示例
下例向图表中第一个数据系列的最后一个数据点添加数据标签。
Dim pts As Points 
Set pts = myChart.SeriesCollection(1).Points 
pts(pts.Count).ApplyDataLabels Type:=xlShowValue
下例设置图表中第一个数据系列的第三个数据点的数据标记样式。 指定的系列必须是 2D 线、散点或雷达系列。
myChart.SeriesCollection(1).Points(3).MarkerStyle = xlDiamond
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。