ICandleSeries.LowValues
ICandleSeries

property LowValues: IValueList;

Type Library
TeeChartx

Description
The LowValues property is used to store all Stock market Low values. You can access Low values in the same way you can access X or Y values.

Example [Visual Basic]:

{ this code makes all Candle Low values the same as Close values }

With TChart1.Series(0).asCandle

For t = 0 To .LowValues.Count - 1

.LowValues.Value(t) = .CloseValues.Value(t)

Next t

End With