| control.Region(n).AddHighLowSeries | ||
| Purpose | Add a grid-based HighLow series to a region of a chart. | |
| Parameter | - | |
| Return value | - | |
| Remarks | After adding a HighLow series object to a region you have accsess to it for setting all needed properties which belong to line series objects, and to pass the data to the object. Each region can have only one HighLow series, therefore it's not necessary to pass an Index when you want to get access to a previously added HighLow series. | |
| Example | RMChartX1.AddRegion RMChartX1.Region(1).AddHighLowSeries RMChartX1.Region(1).HighLowSeries.SeriesStyle = RMC_CANDLESTICK RMChartX1.Region(1).HighLowSeries.SetDataFile "dow2004.csv", "124,105", "2,3,4,5", "," | |