ICandleSeries.HighValues
ICandleSeries

property HighValues: IValueList;

Type Library
TeeChartx

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

Example [Visual Basic]:

{ this code decreases the last Candle High value }

With TChart1.Series(0).asCandle

.HighValues.Value(.HighValues.Count - 1) = .HighValues.Value(.HighValues.Count - 1) - 1

End With