使用VBA将数据标签提供到Excel中

时间:2009-12-18 04:28:18

标签: excel vba excel-vba

我有散点图

我希望每个点都有一个标签。

如何通过VBA为每个点提供标签?

1 个答案:

答案 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