IMarks.ArrowLength
IMarks

property ArrowLength: Integer;

Type Library
TeeChartx

Description
Default Value: 16

The ArrowLength property determines the number of pixels used to display a line connecting the Series Marks to their corresponding points.

The Arrow property is the Pen used to draw this line.

Example [Visual Basic]:

This code checks series type and changes the ArrowLength.

With TChart1.Series(0)

If .SeriesType=scBar then

.Marks.ArrowLength = 10

Else

.Marks.ArrowLength = 0

End If

End With