|
|
|
|
|
<Chart>.SunburstSectionColor (Function) In french: <Graphe>.SMNCouleurPortion Changes the color of a portion of a Sunburst chart.
GRF_Graphe.SMNAjouteDonnée("Europe" + TAB + "France" + TAB + "Montpellier", 320000)
GRF_Graphe.SMNAjouteDonnée("Europe" + TAB + "France" + TAB + "Paris", 789000)
GRF_Graphe.SMNAjouteDonnée("Europe" + TAB + "France", 1109000)
GRF_Graphe.SMNAjouteDonnée("Europe" + TAB + "Belgique", 900000)
GRF_Graphe.SMNAjouteDonnée("Asie", 250000)
GRF_Graphe.SMNCouleurPortion("Europe", RGB(106, 188, 227))
GRF_Graphe.SMNCouleurPortion("Asie", RGB(182, 115, 251))
GRF_Graphe.Dessine()
Syntax
<Chart control>.SunburstSectionColor(<Section path> , <Color>)
<Chart control>: Control name Name of Chart control to be manipulated (present in window or report editor).
<Section path>: Character string Full path of the section that must be colored in the chart. This parameter has the following format:
"<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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|