|
|
|
|
SeriesColor (Property) In french: CouleurSérie
The SeriesColor property is used to: - Find out the color of a series in a chart.
- Modify the color of a series in a chart.
IF CHART_MyChart[2].SeriesColor = grColorAutomatic THEN CHART_MyChart[2].SeriesColor = LightRed END
Syntax
Finding out the color of a series Hide the details
<Result> = <Series>.SeriesColor
<Result>: Integer or Integer constant Color of specified series. This color can correspond to:- the grColorAutomatic constant (if the color is defined automatically).
- an RGB color (returned by RGB),
- a preset color.
<Series>: Character string Series whose color is requested. Use the following notation: <Chart name>[<Series number>].
Modifying the color of a series Hide the details
<Series>.SeriesColor = <New color>
<Series>: Character string Series whose color must be modified. Use the following notation: <Chart name>[<Series number>]. <New color>: Integer or Integer constant Color of specified series. This color can correspond to:- the grColorAutomatic constant (if the color must be defined automatically).
- an RGB color (returned by RGB),
- a preset color.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|