| control.Region(n).BarSeries(n).Color | ||
| Type: | Long (RMC_Colors constant or any RGB value) |
| Purpose: | Sets the color of the bar objects |
| Default: | One of the internal color values, which is dependend from the choosen bar style and from the series index, where the first added series has the index 1, the second the index 2 and so on. |
| Accessible: | Runtime |
| Remarks: | To set the default value
for the color you can either pass the constant Default (or 0) or ignore this property. Instead of one of the over
180 predefined color constants you can pass any other valid RGB value. |
| Example: | RMChartX1.AddRegion RMChartX1.Region(1).AddBarSeries RMChartX1.Region(1).BarSeries(1).Color = TropicalPink ' If you have single bars and want to have different colors for each bar: RMChartX1.Region(1).BarSeries(1).Color = Transparent |