HasLeaderLines property (Excel Graph)

True if the series has leader lines. Read/write Boolean.

Syntax

expression.HasLeaderLines

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example adds data labels and blue leader lines to series one on the pie chart.

With myChart.SeriesCollection(1) 
 .HasDataLabels = True 
 .DataLabels.Position = xlLabelPositionBestFit 
 .HasLeaderLines = True 
 .LeaderLines.Border.ColorIndex = 5 
End With

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.