SGR Generate bubbleChart-EN : Différence entre versions
De BlueWiki
Ligne 1 : | Ligne 1 : | ||
− | [[Composant_Graphe_SVG-EN#Commands|Component Command List ]] - [[File:icon_drapeau_francais.gif | + | [[Composant_Graphe_SVG-EN#Commands|Component Command List ]] - [[SGR_Generate_bubbleChart|[[File:icon_drapeau_francais.gif]]Version française]] |
=== Parameters === | === Parameters === | ||
---- | ---- |
Version du 30 juin 2014 à 21:40
Component Command List - [[SGR_Generate_bubbleChart|Version française]]
Parameters
Description
Sample Code
Pour obtenir ce graphe il vous faudra utiliser le code ci-dessous
// User (OS) : Paul Kuhn - BlueCompany // ---------------------------------------------------- // Method : Exemple_Bulle // Description // // // Parameters // ---------------------------------------------------- ARRAY TEXT($DataGrapheName;0) ARRAY TEXT($DataGraphe;0) APPEND TO ARRAY($DataGrapheName;"BubbleMaxDiameter") APPEND TO ARRAY($DataGraphe;"400") // diametre maximum d'une bulle APPEND TO ARRAY($DataGrapheName;"GraphBGColor") APPEND TO ARRAY($DataGraphe;"White") // couleur de fond du graphe APPEND TO ARRAY($DataGrapheName;"Title") APPEND TO ARRAY($DataGraphe;"Evolution du nombres de produits et du CA") // Titre du graphe APPEND TO ARRAY($DataGrapheName;"TitleAlignement") APPEND TO ARRAY($DataGraphe;String(Center)) // Alignement du Titre du graphe APPEND TO ARRAY($DataGrapheName;"ShowZeroOnHorizontalAxis") APPEND TO ARRAY($DataGraphe;"non") // le zéro de l'axe horizontal doit etre visible APPEND TO ARRAY($DataGrapheName;"ShowZeroOnVerticalAxis") APPEND TO ARRAY($DataGraphe;"oui") // le zéro de l'axe vertical doit etre visible APPEND TO ARRAY($DataGrapheName;"ShowHorizontalScaleLine") APPEND TO ARRAY($DataGraphe;"oui") // Traits horizontaux pour les graduations APPEND TO ARRAY($DataGrapheName;"ShowVerticalScaleLine") APPEND TO ARRAY($DataGraphe;"yes") // Traits verticaux pour les graduations APPEND TO ARRAY($DataGrapheName;"ShowBubbleName") APPEND TO ARRAY($DataGraphe;"oui") // Affichage des libellés APPEND TO ARRAY($DataGrapheName;"BubbleFontSize") APPEND TO ARRAY($DataGraphe;"36") // taille de la police des libellés APPEND TO ARRAY($DataGrapheName;"GraphFont") APPEND TO ARRAY($DataGraphe;"Arial") // Police des légendes et des échelles APPEND TO ARRAY($DataGrapheName;"BubbleStyle") APPEND TO ARRAY($DataGraphe;"Sphere") // Type de bulle à dessiner ARRAY TEXT($legende;0) // légende des valeurs APPEND TO ARRAY($legende;"Année") APPEND TO ARRAY($legende;"Nbre de produits") APPEND TO ARRAY($legende;"CA") ARRAY TEXT($Libelle;0) APPEND TO ARRAY($Libelle;"Années 80 : les débuts") APPEND TO ARRAY($Libelle;"") APPEND TO ARRAY($Libelle;"Années 90 : la croissance") APPEND TO ARRAY($Libelle;"Années 2000 : l'explosion") APPEND TO ARRAY($Libelle;"Années 2010 : le déclin") ARRAY REAL($Value1;0) // axe horizontal APPEND TO ARRAY($Value1;1980) APPEND TO ARRAY($Value1;1985) APPEND TO ARRAY($Value1;1990) APPEND TO ARRAY($Value1;2000) APPEND TO ARRAY($Value1;2012) ARRAY REAL($Value2;0) // axe vertical APPEND TO ARRAY($Value2;25) APPEND TO ARRAY($Value2;35) APPEND TO ARRAY($Value2;50) APPEND TO ARRAY($Value2;80) APPEND TO ARRAY($Value2;12) ARRAY REAL($Value3;0) // Diametre de la bulle APPEND TO ARRAY($Value3;18000000) APPEND TO ARRAY($Value3;22000000) APPEND TO ARRAY($Value3;32000000) APPEND TO ARRAY($Value3;40000000) APPEND TO ARRAY($Value3;10000000) ARRAY TEXT($Color;0) APPEND TO ARRAY($Color;"lightblue") APPEND TO ARRAY($Color;"Purple") APPEND TO ARRAY($Color;"Pink") APPEND TO ARRAY($Color;"LightGreen") APPEND TO ARRAY($Color;"orange") TheGraphe:=SGR_Generate_bubbleChart (->$DataGrapheName;->$DataGraphe;->$legende;->$Libelle;->$Value1;->$Value2;->$Value3;->$Color)