Series.LeaderLines (Word)

Gibt die Führungslinie der Datenreihe zurück.

Diese Eigenschaft gilt nur für Kreisdiagramme.


With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.SeriesCollection(1) 
 .HasDataLabels = True 
 .DataLabels.Position = xlLabelPositionBestFit 
 .HasLeaderLines = True 
 .LeaderLines.Border.ColorIndex = 5 
 End With 
 End If 
End With