| control.Region(n).GridlessSeries.ColorString | ||
| Type: | String | |
| Purpose: | Passes all color values enclosed in an asterisks separated string. | |
| Default: | - | |
| Accessible: | Runtime | |
| Remarks: | Setting the color value for non-grid based series is different from setting color values for all other series types: here you can pass for each data value (= segment of a gridless chart) a different color value. You are not forced to pass your own color values: if you don't the internal colors are used, the same way as with the other series types. But if you want to set your individual colors you can use three alternative ways:
| |
| Example: | RMChartX1.AddRegion ' Add a non-grid based series to the region: RMChartX1.Region(1).AddGridlessSeries ' Pass the color values for the series with a string: RMChartX1.Region(1).GridlessSeries.ColorString = "Red*Green*Blue" |