2009-12-18 8 views

답변

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 
관련 문제