图表中指定的数据系列内所有 Point 对象的集合。
可用 Points 方法返回 Points 集合。下例向图表中第一个数据系列的最后一个数据点添加数据标签。
Dim pts As Points
Set pts = myChart.SeriesCollection(1).Points
pts(pts.Count).ApplyDataLabels Type:=xlShowValue
可用 Points(index)(其中 index 为数据点编号)返回单个 Point 对象。数据系列中的数据点按从左至右的顺序编号。Points(1) 为最左边的数据点,而 Points(Points.Count) 为最右边的数据点。下例设置图表中第一个数据系列的第三个数据点的数据标志样式。指定的数据系列必须是二维折线图、散点图或雷达图中的数据系列。
myChart.SeriesCollection(1).Points(3).MarkerStyle = xlDiamond