Subversion Repositories Applications.annuaire

Rev

Rev 437 | Rev 440 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
66 aurelien 1
<?php
2
/**
3
* PHP Version 5
4
*
5
* @category  PHP
6
* @package   annuaire
7
* @author    aurelien <aurelien@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
11
* @link      /doc/annuaire/
12
*/
13
 
14
class Statistiques {
15
 
16
	const GRAPH_CAMEMBERT = 'pie';
17
	const GRAPH_COURBE = 'courbe';
439 jpm 18
	private $chemin_lib_graph = '';
19
 
20
	public function __construct() {
21
 
22
		$this->chemin_lib_graph = Config::get('chemin_jpgraph');
23
	}
66 aurelien 24
 
439 jpm 25
		public function genererGraphique($type_graphique, $valeurs, $titre = '', $taille = array(800, 800), $nom_axe_x = '', $nom_axe_y = '') {
26
		include_once $this->chemin_lib_graph.'jpgraph.php';
27
 
66 aurelien 28
		$graph = null;
29
		switch($type_graphique) {
30
			case Statistiques::GRAPH_CAMEMBERT:
232 aurelien 31
				$graph = $this->genererGraphiqueCamembert($valeurs, $titre, $taille);
439 jpm 32
				break;
66 aurelien 33
			case Statistiques::GRAPH_COURBE:
232 aurelien 34
				$graph = $this->genererGraphiqueCourbe($valeurs, $titre, $taille, $nom_axe_x, $nom_axe_y);
439 jpm 35
				break;
66 aurelien 36
			default:
37
				$graph = $this->genererGraphiqueCourbe($valeurs);
38
		}
39
 
40
		return $graph;
41
	}
42
 
232 aurelien 43
	public function genererGraphiqueCamembert($valeurs, $titre, $taille) {
439 jpm 44
		include_once $this->chemin_lib_graph.'jpgraph_pie.php';
223 aurelien 45
		$legendes = array_keys($valeurs);
46
		$valeurs = array_values($valeurs);
439 jpm 47
 
223 aurelien 48
		$oPie = new PiePlot($valeurs);
49
		$oPie->SetLegends($legendes);
66 aurelien 50
		// position du graphique (légèrement à droite)
232 aurelien 51
		$oPie->SetCenter(0.35);
66 aurelien 52
		$oPie->SetValueType(PIE_VALUE_PER);
53
		// Format des valeurs de type "entier"
223 aurelien 54
		$oPie->value->SetFormat('%1.2f%%');
66 aurelien 55
 
439 jpm 56
		$graph = new PieGraph($taille[0],$taille[1]);
57
		// Ajouter le titre du graphique
58
		$graph->title->Set($titre);
66 aurelien 59
		$graph->Add($oPie);
232 aurelien 60
		return $graph;
66 aurelien 61
	}
62
 
232 aurelien 63
	public function genererGraphiqueCourbe($valeurs, $titre, $taille, $nom_axe_x, $nom_axe_y) {
439 jpm 64
		include_once $this->chemin_lib_graph.'jpgraph_line.php';
65
 
66 aurelien 66
		// Création du conteneur
232 aurelien 67
		$graph = new Graph($taille[0],$taille[1],"auto");
66 aurelien 68
 
232 aurelien 69
		$graph->img->SetMargin(50,30,50,100);
66 aurelien 70
 
71
		// Lissage sur fond blanc (évite la pixellisation)
72
		$graph->img->SetAntiAliasing("white");
232 aurelien 73
		$graph->SetMarginColor("white");
66 aurelien 74
 
75
		// A détailler
76
		$graph->SetScale("textlin");
77
 
78
		// Ajouter une ombre
79
		$graph->SetShadow();
80
 
81
		// Ajouter le titre du graphique
82
		$graph->title->Set($titre);
83
 
84
		// Afficher la grille de l'axe des ordonnées
85
		$graph->ygrid->Show();
86
		// Fixer la couleur de l'axe (bleu avec transparence : @0.7)
232 aurelien 87
		$graph->ygrid->SetColor('#E6E6E6@0.7');
66 aurelien 88
		// Des tirets pour les lignes
89
		$graph->ygrid->SetLineStyle('solid');
90
 
91
		// Afficher la grille de l'axe des abscisses
232 aurelien 92
		//$graph->xgrid->Show();
66 aurelien 93
		// Fixer la couleur de l'axe (rouge avec transparence : @0.7)
232 aurelien 94
		//$graph->xgrid->SetColor('red@0.7');
66 aurelien 95
		// Des tirets pour les lignes
232 aurelien 96
		//$graph->xgrid->SetLineStyle('solid');
97
		$graph->xaxis->SetLabelAngle(90);
98
		$graph->xaxis->SetTextLabelInterval(4);
66 aurelien 99
 
100
		// Créer une courbes
101
		$courbe = new LinePlot(array_values($valeurs));
102
 
103
		// Chaque point de la courbe ****
104
		// Type de point
105
		$courbe->mark->SetType(MARK_FILLEDCIRCLE);
106
		// Couleur de remplissage
232 aurelien 107
		$courbe->mark->SetFillColor("red");
66 aurelien 108
		// Taille
232 aurelien 109
		$courbe->mark->SetWidth(1);
66 aurelien 110
 
111
		// Paramétrage des axes
232 aurelien 112
		//$graph->xaxis->title->Set($nom_axe_x);
113
		$txt = new Text($nom_axe_x,270,460);
66 aurelien 114
		$graph->xaxis->SetTickLabels(array_keys($valeurs));
115
 
116
		// Paramétrage des axes
117
		$graph->yaxis->title->Set($nom_axe_y);
118
 
119
		// Ajouter la courbe au conteneur
120
		$graph->Add($courbe);
121
 
232 aurelien 122
		return $graph;
66 aurelien 123
	}
124
 
232 aurelien 125
	public function combinerGraphiques($graph1, $graph2, $taille) {
439 jpm 126
		include_once $this->chemin_lib_graph.'jpgraph_mgraph.php';
66 aurelien 127
 
232 aurelien 128
		$mgraph = new MGraph($taille[0],$taille[1],"auto");
129
		$xpos1=300;$ypos1=3;
130
		$xpos2=3;$ypos2=200;
131
 
132
		$graph1->SetFrame(false);
133
		$graph2->SetFrame(false);
134
 
135
		//$xpos3=3;$ypos3=1000;
136
		$mgraph->Add($graph1,$xpos1,$ypos1);
137
		$mgraph->Add($graph2,$xpos2,$ypos2);
138
		$mgraph->SetShadow();
139
		//$mgraph->Add($graph['experience_bota'],$xpos3,$ypos3);
140
		return $mgraph;
66 aurelien 141
	}
232 aurelien 142
 
143
	public function dessinerGraph($graph) {
144
		return $graph->Stroke(_IMG_HANDLER);
145
	}
66 aurelien 146
}
439 jpm 147
?>