|
|
|
|
|
grSunburstSectionColor (Function) In french: grSMNCouleurPortion Changes the color of a section in a Sunburst chart. // Adds the data grSunburstAddData(CHART_Chart, "Europe" + TAB + "France" + TAB + "Montpellier", 320000) grSunburstAddData(CHART_Chart, "Europe" + TAB + "France" + TAB + "Paris", 789000) grSunburstAddData(CHART_Chart, "Europe" + TAB + "France", 1109000) grSunburstAddData(CHART_Chart, "Europe" + TAB + "Belgium", 900000) grSunburstAddData(CHART_Chart, "Asia", 250000) Â // Customizes the colors of the chart grSunburstSectionColor(CHART_Chart, "Europe", RGB(106, 188, 227)) grSunburstSectionColor(CHART_Chart, "Asia", RGB(182, 115, 251)) Â grDraw(CHART_Chart)
Syntax
grSunburstSectionColor(<Chart name> , <Section path> , <Color>)
<Chart name>: Control name or character string Name of the chart to be used. This name corresponds to:- the chart name defined through programming with grCreate.
- the name of the Chart control in the window or report editor.
<Section path>: Character string Full path of the section that must be colored in the chart. This parameter is of the form:
"<Name of base level>" + TAB + ["<Name of 1st level>" + TAB + ... ["<Name of last level>" + TAB + [...]]]"<Section name>" <Color>: Integer or Integer constant Color of the specified section. This color can correspond to: Remarks - If a section has no specific color, a color is automatically assigned to it. This allows you to get a gradient with the sections of higher level if they exist.
- The color can be modified at any time before drawing the chart.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|