SGR DrawMap-EN : Différence entre versions
De BlueWiki
(→Description) |
(→Parameters) |
||
Ligne 4 : | Ligne 4 : | ||
{| class="wikitable" | {| class="wikitable" | ||
− | ! | + | !Parameters |
!Type | !Type | ||
! | ! | ||
− | ! | + | !Parameter # |
!Description | !Description | ||
|- | |- | ||
− | |valign="top"| | + | |valign="top"|Name of Graph's parameters |
− | |valign="top"| | + | |valign="top"|Pointer |
|valign="top"|[[File:in.png|caption]] | |valign="top"|[[File:in.png|caption]] | ||
|valign="top" align="center"|1 | |valign="top" align="center"|1 | ||
− | | | + | |Pointer to a text array that contains the name of the parameters, this array must have the same size as the array of parameter values of the graph |
− | + | Possible values of the parameter of the graph are the following: | |
− | + | ||
+ | |||
+ | General parameters of the graph | ||
* "Police du graphe" ou "GraphFont" : Police du titre et polices par défaut des légendes et des échelles (arial par défaut) | * "Police du graphe" ou "GraphFont" : Police du titre et polices par défaut des légendes et des échelles (arial par défaut) | ||
* "SVGFile" ou "Fichier SVG" : chemin d'accès au fond de carte dans le dossier "ressource" de 4D | * "SVGFile" ou "Fichier SVG" : chemin d'accès au fond de carte dans le dossier "ressource" de 4D | ||
* "ShowLegend" ou "Affichage d'une légende" : afficher une légende | * "ShowLegend" ou "Affichage d'une légende" : afficher une légende | ||
* "LegendLanguage" ou "Langue de la légende" : langue de la légende Français ou English (défaut : french) | * "LegendLanguage" ou "Langue de la légende" : langue de la légende Français ou English (défaut : french) | ||
− | * "Couleur de fond du graphe | + | * "GraphBGColor" ou "Couleur de fond du graphe" : Background color of the table |
− | * "Couleur 2 de fond du graphe | + | * "GraphBGColor2" ou "Couleur 2 de fond du graphe" : Second background color of the graph, if you specify a second color which is different from the first you will get a gradient |
− | + | Title parameters | |
− | * "Titre" | + | * "Titre" or "Title" : graph title |
− | * "alignement du titre" ou "TitleAlignement" : | + | * "alignement du titre" ou "TitleAlignement" : Title Alignment 0,1,2,3 |
− | * "TitleFontSize" ou "Taille de la police du titre" : | + | * "TitleFontSize" ou "Taille de la police du titre" : Title font size |
− | * "TitleFontStyle" ou "Style de la police du titre" : | + | * "TitleFontStyle" ou "Style de la police du titre" : Title font style (ex (bold+italic)) |
− | * "TitleFontColor" ou "Couleur de la police du titre" : | + | * "TitleFontColor" ou "Couleur de la police du titre" : Title font color |
− | * "TitleVerticalOffSet" | + | * "TitleVerticalOffSet" or "Décalage vertical du titre" : Vertical offset in px for fine adjustment of its position |
Version du 2 juillet 2014 à 19:27
Component Command List - Version française
Parameters
Description
This command allows colorizing a base map function of values and color gradients.
Zones are listed by their ID and manipulated from thereof.
Code example
// User (OS) : Paul Kuhn - BlueCompany // Date : 08/11/13, 10:42:04 // ---------------------------------------------------- // Method : Exemple_carte1 // Description // // // Parameters // ---------------------------------------------------- TABLEAU TEXTE($DataGrapheName;0) TABLEAU TEXTE($DataGraphe;0) AJOUTER A TABLEAU($DataGrapheName;"Title") AJOUTER A TABLEAU($DataGraphe;"Répartition géographique des ventes") // 1 - Titre du graphe AJOUTER A TABLEAU($DataGrapheName;"SVGFile") AJOUTER A TABLEAU($DataGraphe;"Fond_de_carte_France"+Séparateur dossier+"departements.svg") AJOUTER A TABLEAU($DataGrapheName;"GraphFont") AJOUTER A TABLEAU($DataGraphe;"Arial") // Police des légendes et des échelles AJOUTER A TABLEAU($DataGrapheName;"GraphBGColor") AJOUTER A TABLEAU($DataGraphe;"LightBlue:30") // Couleur du fond AJOUTER A TABLEAU($DataGrapheName;"ShowLegend") AJOUTER A TABLEAU($DataGraphe;"Oui") // Affichage de la légende AJOUTER A TABLEAU($DataGrapheName;"LegendLanguage") AJOUTER A TABLEAU($DataGraphe;"English") // Affichage de la légende TABLEAU REEL($valeur_limite;3) $valeur_limite{1}:=30 $valeur_limite{2}:=60 $valeur_limite{3}:=90 TABLEAU TEXTE($couleur;3) $couleur{0}:="aquamarine" $couleur{1}:="deepskyblue" $couleur{2}:="dodgerblue" $couleur{3}:="midnightblue" TABLEAU REEL($Value;95) TABLEAU TEXTE($ZoneID;95) Boucle ($i;1;95) $ZoneID{$i}:=Chaine($i;"00") $Value{$i}:=(Hasard%(101)) Fin de boucle $ZoneID{20}:="2A" INSERER DANS TABLEAU($ZoneID;21;1) $ZoneID{21}:="2B" INSERER DANS TABLEAU($Value;21;1) $Value{21}:=$Value{20} TheGraphe:=SGR_DrawMap (->$DataGrapheName;->$DataGraphe;->$valeur_limite;->$couleur;->$ZoneID;->$Value)