我有散点图
我希望每个点都有一个标签。
如何通过VBA为每个点提供标签?
答案 0 :(得分:2)
您正在使用ApplyDataLabels方法。请务必阅读文档,它有很多可选参数。
Sub Example()
Dim sc As Excel.Series
For Each sc In Chart2.SeriesCollection
sc.ApplyDataLabels xlDataLabelsShowValue, True, True, False, True
Next
End Sub