| control.Region(n).AddBarSeries | ||
| Purpose | Add a grid-based Bar series to a region of a chart. | |
| Parameter | - | |
| Return value | - | |
| Remarks | After adding a Bar series object to a region you have accsess to it for setting all needed properties which belong to Bar series objects, and to pass the data to the object. Each region can have up to 15 Bar series, therefore you must pass an Index when you want to get access to a previously added Bar series. | |
| Example | RMChartX1.AddRegion RMChartX1.Region(1).AddBarSeries RMChartX1.Region(1).BarSeries(1).SeriesStyle = RMC_BAR_FLAT RMChartX1.Region(1).BarSeries(1).DataString = "50*70*40*60*30" | |