SGR Generate Pie-EN : Différence entre versions
De BlueWiki
(→Parameters) |
|||
Ligne 24 : | Ligne 24 : | ||
Title parameters | Title parameters | ||
* - "Titre" or "Title" : graph title | * - "Titre" or "Title" : graph title | ||
− | * - "alignement du titre" | + | * - "alignement du titre" or "TitleAlignement" : Title Alignment 0,1,2,3 |
− | * - "Police du graphe" | + | * - "Police du graphe" or "GraphFont" : Title font and default font for legend and scale (arial by default) |
− | * - "TitleFontSize" | + | * - "TitleFontSize" or "Taille de la police du titre" : Title font size |
− | * - "TitleFontStyle" | + | * - "TitleFontStyle" or "Style de la police du titre" : Title font style (ex (bold+italic)) |
− | * - "TitleFontColor" | + | * - "TitleFontColor" or "Couleur de la police du titre" : Title font color |
Ligne 34 : | Ligne 34 : | ||
* - "Affichage de la légende" or "ShowLegend" : Display the legend "oui", "vrai", "true", "yes", "non", "no", "Faux", "false" | * - "Affichage de la légende" or "ShowLegend" : Display the legend "oui", "vrai", "true", "yes", "non", "no", "Faux", "false" | ||
* - "Police de la légende" ou "legendFont" : Legend font, if this value is passed, it replaces the "graphFont" | * - "Police de la légende" ou "legendFont" : Legend font, if this value is passed, it replaces the "graphFont" | ||
− | * - "LegendFontSize" | + | * - "LegendFontSize" or "Taille de la police de la légende" : Legend font size |
− | * - "LegendFontStyle" | + | * - "LegendFontStyle" or "Style de la police de la légende" : Legend font style |
− | * - "LegendFontColor" | + | * - "LegendFontColor" or "Couleur de la police de la légende" : Legend font color |
− | * - "LegendBGcolor" | + | * - "LegendBGcolor" or "Couleur de fond de la légende" : Legend background color ("White:0" for transparency) |
+ | |||
+ | |||
+ | Value parameters | ||
+ | * - "ValueFontSize" or "Taille de la police des valeurs" : Font size of the displayed values on the graph | ||
+ | |||
General parameters | General parameters | ||
− | * - "ShowValue" | + | * - "ShowValue" or "Affichage des valeurs" (oui/yes/non/no/value/name/%) : Displays the title, value or percentage of each part of the pie |
* - "Donut" Number of pixels of diameter of central extrusion : the white circle (Our advice: between 300 and 500) | * - "Donut" Number of pixels of diameter of central extrusion : the white circle (Our advice: between 300 and 500) | ||
Version du 6 janvier 2014 à 15:06
Version française de cette page
Parameters
Description
This graph will be completely reviewed in the next version
The next version will allow you to detach an area and give perspective and depth to the graph
Sample Code
For this graph you will need to use the code below
// User (OS) : Paul Kuhn - BlueCompany // ---------------------------------------------------- // Method : Pie_Sample // Definition of generic parameters of the graph ARRAY TEXT($DataGrapheName;0) ARRAY TEXT($DataGraphe;0) APPEND TO ARRAY($DataGrapheName;"Title") APPEND TO ARRAY($DataGraphe;"Revenue by state") // title (not shown if empty) APPEND TO ARRAY($DataGrapheName;"GraphBGColor") APPEND TO ARRAY($DataGraphe;"White") // BackGround color APPEND TO ARRAY($DataGrapheName;"GraphFont") APPEND TO ARRAY($DataGraphe;"times") // Font APPEND TO ARRAY($DataGrapheName;"ShowLegend") // Echelles des valeurs APPEND TO ARRAY($DataGraphe;"true") // vrai/faux ou true/false APPEND TO ARRAY($DataGrapheName;"TitleAlignement") // Title alignment APPEND TO ARRAY($DataGraphe;String(Center)) ARRAY TEXT(Legende;6) Legende{1}:="California" Legende{2}:="Texas" Legende{3}:="Florida" Legende{4}:="South carolina" Legende{5}:="Michigan" Legende{6}:="Others" ARRAY REAL(ValueC;6) For ($i;1;6) ValueC{$i}:=(Random%(101)) End for ARRAY TEXT(color;6) color{1}:="lightsteelblue" color{2}:="pink" color{3}:="chocolate" color{4}:="darksalmon" color{5}:="red" color{6}:="green" TheGraphe:=SGR_Generate_Pie (->$DataGrapheName;->$DataGraphe;->Legende;->ValueC;->color)