ILineSeries
Hierarchy Properties

Type Library
TeeChartx

Description
The asLine property is used by the Series Class to access Line Series specific properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.

eg. 'TChart1.Series(x).asLine.LinePen.Width = 2'.

Example [Visual Basic]:

With TChart1.Series(0)

.AddXY 12, 10, "1st", clTeeColor

.AddXY 7, 4, "2nd", clTeeColor

.AddXY 9, 7, "3rd", clTeeColor

.AddXY 14, 11, "4th", clTeeColor

.asLine.Stairs = True

End With

End Sub