| control.Region(n).AddGridlessSeries | ||
| Purpose | Add a non-grid based series to a region of a chart. | |
| Parameter | - | |
| Return value | - | |
| Remarks | After adding a non-grid based series object to a region you have accsess to it for setting all needed properties which belong to non-grid based series objects, and to pass the data to the object. Each region can have only one non-grid based series, therefore it's not necessary to pass an Index when you want to get access to a previously added non-grid based series. | |
| Example | RMChartX1.AddRegion RMChartX1.Region(1).AddGridlessSeries RMChartX1.Region(1).GridLessSeries.SeriesStyle = RMC_PIE_3D RMChartX1.Region(1).GridLessSeries.DataString = "10*20*30*40" | |