Esempio n. 1
0
 function __construct($Titre = "", $NbColonnesLegende = GRAPH_NB_COLONNES_LEGENDE, $width = GRAPH_LARGEUR, $height = GRAPH_HAUTEUR, $cachedName = "", $timeout = 0, $inline = 1)
 {
     parent::__construct($width, $height, $cachedName, $timeout, $inline);
     $this->SetColor("white");
     $this->title->Set($Titre);
     $this->title->SetFont(FF_TIMES, FS_BOLD, 12);
     $this->title->SetColor("#404040");
     // Mise en forme de la légende du graphe
     $this->legend->SetAbsPos(0, 220, "left", "top");
     // à 0px du bord gauche et à 220px du haut
     $this->legend->SetFillColor("white");
     // couleur de fond : blanc
     $this->legend->SetColumns($NbColonnesLegende);
     // nombre de colonnes par ligne
 }