void AddHighValues(TVec *High, double Low, double Offset, double Step);
Use this method to pass values to the HighLow series when the drawing mode is overview.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | High | TVec * | |
| 2 | Low | double | |
| 3 | Offset | double | |
| 4 | Step | double |
Remarks:
The Offset defines the start on the X axis and the Step the distance between consecutive samples on the X axis. The src should contain the data that is to be drawn. For THighLowSeries there should be one high and low value for each x value. The two Y values must be interleaved: ((High[0], Low), (High[1], Low), (High[2], Low),..)
Declared in Dew::Signal::Controls::VCL::TSignalHighLowSeries · Dew.Signal.Controls.VCL/SignalSeriesTee.h · C++Builder only