ISeries.asFastLine
ISeries
property asFastLine: IFastLineSeries;
Type Library
TeeChartx
Description
The asFastLine property is used by the Series Class to access FastLine Series specific properties.
eg. 'TChart1.Series(x).asFastLine.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
.asFastLine.LinePen.Style = psDash
End With