1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
| <?php
include ("../jpgraph/jpgraph.php");
include ("../jpgraph/jpgraph_bar.php");
include ("../jpGraph/jpgraph_pie.php");
include ("../jpGraph/jpgraph_mgraph.php");
define('MYSQL_HOST', 'localhost');
define('MYSQL_USER', 'root');
define('MYSQL_PASS', '');
define('MYSQL_DATABASE', 'glpi');
// *******************
// Création Histogramme total
// *******************
$tableauouverttotal = array();
$tableauresolutotal = array();
$tableaumois = array();
$moislettre = array("","Janvier","Fevrier","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Decembre");
$tableaumoisouvert = "";
$tableaumoisresolu = "";
$tableautitremois = "";
$tableauannee = "";
//On traite le formulaire
if(isset($_POST['Valider'])){
$date_post = $_POST['annee'].'-'.$_POST['mois'].'-01';
$mois=$_POST['mois'];
$annee=$_POST['annee'];
$sql = 'SELECT COUNT(ID) AS total_ouvert,
COUNT(solvedate) AS total_resolu,
MONTH(date) AS MOIS
FROM glpi_excel
WHERE date >= DATE_SUB("'.$date_post.'", INTERVAL 2 MONTH) AND date <= LAST_DAY("'.$date_post.'")
GROUP BY MONTH(date)';
/*
$sql2 = 'SELECT COUNT( ID ) AS total_ouvert,
COUNT( solvedate ) AS total_resolu
FROM glpi_excel
WHERE date BETWEEN "'.$date_post'" AND "'.$date_post'"';*/
$sql3='SELECT MONTH(date) as MOIS
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql4='SELECT YEAR(date) as ANNEE
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$mysqlCnx = @mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) or die('Pb de connxion mysql');
@mysql_select_db(MYSQL_DATABASE) or die('Pb de sélection de la base');
$mysqlQuery = @mysql_query($sql, $mysqlCnx) or die('Pb de requête1');
//$mysqlQuery2 = @mysql_query($sql2, $mysqlCnx) or die('Pb de requête2');
$mysqlQuery3 = @mysql_query($sql3, $mysqlCnx) or die('Pb de requête3');
$mysqlQuery4 = @mysql_query($sql4, $mysqlCnx) or die('Pb de requête4');
while ($row = mysql_fetch_array($mysqlQuery, MYSQL_ASSOC)) {
$tableauouverttotal[] = $row['total_ouvert'];
$tableauresolutotal[] = $row['total_resolu'];
$tableaumois[] = $moislettre[$row['MOIS']];
}
/*
while ($row = mysql_fetch_array($mysqlQuery2, MYSQL_ASSOC)) {
$tableaumoisouvert = $row['total_ouvert'];
$tableaumoisresolu = $row['total_resolu'];
}
*/
while ($row = mysql_fetch_array($mysqlQuery3, MYSQL_ASSOC)) {
$tableautitremois = $moislettre[$row['MOIS']];
}
while ($row = mysql_fetch_array($mysqlQuery4, MYSQL_ASSOC)) {
$tableauannee = $row['ANNEE'];
}
/*
var_dump($date_post);
var_dump($mois);
var_dump($annee);
var_dump($sql3);
//var_dump($tableauouverttotal);
//var_dump($tableauresolutotal);
//var_dump($tableaumois);*/
// *******************
// Création du graphique
// *******************
// Construction du conteneur
// Spécification largeur et hauteur
$graph = new Graph(1200,700);
// Réprésentation linéaire
$graph->SetScale("textlin");
// Ajouter une ombre au conteneur
//$graph->SetShadow();
// Fixer les marges
$graph->img->SetMargin(60,30,25,140);
// Une ombre pour chaque barre
//$bplot->SetShadow();
// Chaque histogramme sera placé dans un tableau commun
$aGroupBarPlot = array();
//Histo 1
$bplot = new BarPlot($tableauouverttotal);
$aGroupBarPlot[] = $bplot;
//Histo 2
$bplot2 = new BarPlot($tableauresolutotal);
$aGroupBarPlot[] = $bplot2;
//Objet qui regroupe les histogrammes
$gbarplot = new GroupBarPlot($aGroupBarPlot);
// Fixer l'aspect de la police
$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
// Modifier le rendu de chaque valeur
$bplot->value->SetFormat('%d');
// Fixer l'aspect de la police
$bplot2->value->SetFont(FF_ARIAL,FS_NORMAL,8);
// Modifier le rendu de chaque valeur
$bplot2->value->SetFormat('%d');
// Spécification des couleurs des barres
$bplot->SetFillColor('red');
$bplot2->SetFillColor('green');
// Légendes
/*
$legende_ouverts="Nombre de tickets ouverts (".$tableaumoisouvert.")";
$bplot->SetLegend($legende_ouverts);
$legende_resolus="Nombre de tickets résolus (".$tableaumoisresolu.")";
$bplot2->SetLegend($legende_resolus);
*/
$bplot->SetLegend("Nombre de ticket ouverts");
$bplot2->SetLegend("Nombre de ticket résolus");
// Couleur de l'ombre et du fond de la légende
$graph->legend->SetShadow('darkgray@0.5');
$graph->legend->SetFillColor('lightblue@0.3');
// Afficher les valeurs pour chaque barre
$bplot->value->Show();
$bplot2->value->Show();
// Le titre
//$graph->title->Set("Nombre de tickets ouverts et résolus");
$titre_mois="Nombre de tickets ouverts et résolus par catégories pour ".$tableautitremois." ".$tableauannee."";
$graph->title->Set($titre_mois);
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->legend->SetPos(0.50,0.9,'center');
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
// Légende pour l'axe horizontal
$graph->xaxis->SetTickLabels($tableaumois);
$graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,8);
//$graph->xaxis->SetLabelAngle(50);
// Ajouter au graphique les 2 histos
$graph->Add($gbarplot);
// Afficher le graphique
//$graph->Stroke();
// *******************
// Création Histogramme catégorie
// *******************
$tableaucategorie = array();
$tableauouvert = array();
$tableauresolu = array();
$tableauouverttotal = "";
$tableauresolutotal = "";
$tableaumois = "";
$moislettre = array("","Janvier","Fevrier","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Decembre");
$tableauannee = "";
// **********************************************
// Extraction des données dans la base de données
// *************************************************
$sql ='SELECT
name AS categorie,
COUNT(ID) AS ouvert,
COUNT(solvedate) AS resolu
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'
GROUP BY name
UNION
SELECT name AS categorie,0,0
FROM glpi_excel
WHERE name NOT IN ( SELECT DISTINCT name
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.')
ORDER BY categorie ASC';
$sql2 = 'SELECT COUNT(ID) AS total_ouvert,
COUNT(solvedate) AS total_resolu
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql3='SELECT MONTH(date) as MOIS
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql4='SELECT YEAR(date) as ANNEE
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$mysqlCnx = @mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) or die('Pb de connxion mysql');
@mysql_select_db(MYSQL_DATABASE) or die('Pb de sélection de la base');
$mysqlQuery = @mysql_query($sql, $mysqlCnx) or die('Pb de requête1');
$mysqlQuery2 = @mysql_query($sql2, $mysqlCnx) or die('Pb de requête2');
$mysqlQuery3 = @mysql_query($sql3, $mysqlCnx) or die('Pb de requête3');
$mysqlQuery4 = @mysql_query($sql4, $mysqlCnx) or die('Pb de requête4');
while ($row = mysql_fetch_array($mysqlQuery, MYSQL_ASSOC)) {
$tableaucategorie[] = $row['categorie'];
$tableauouvert[] = $row['ouvert'];
$tableauresolu[] = $row['resolu'];
}
while ($row = mysql_fetch_array($mysqlQuery2, MYSQL_ASSOC)) {
$tableauouverttotal = $row['total_ouvert'];
$tableauresolutotal = $row['total_resolu'];
}
while ($row = mysql_fetch_array($mysqlQuery3, MYSQL_ASSOC)) {
$tableaumois = $moislettre[$row['MOIS']];
}
while ($row = mysql_fetch_array($mysqlQuery4, MYSQL_ASSOC)) {
$tableauannee = $row['ANNEE'];
}
/*
var_dump($tableaucategorie);
var_dump($tableauouvert);
var_dump($tableauresolu);
var_dump($tableauouverttotal);
var_dump($tableauresolutotal);
*/
// *******************
// Création du graphique
// *******************
// Construction du conteneur
// Spécification largeur et hauteur
$graph1 = new Graph(1200,700);
// Réprésentation linéaire
$graph1->SetScale("textlin");
// Ajouter une ombre au conteneur
//$graph->SetShadow();
// Fixer les marges
$graph1->img->SetMargin(60,30,25,140);
// Une ombre pour chaque barre
//$bplot->SetShadow();
// Chaque histogramme sera placé dans un tableau commun
$aGroupBarPlot = array();
//Histo 1
$bplot = new BarPlot($tableauouvert);
$aGroupBarPlot[] = $bplot;
//Histo 2
$bplot2 = new BarPlot($tableauresolu);
$aGroupBarPlot[] = $bplot2;
//Objet qui regroupe les histogrammes
$gbarplot = new GroupBarPlot($aGroupBarPlot);
// Fixer l'aspect de la police
$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,8);
// Modifier le rendu de chaque valeur
$bplot->value->SetFormat('%d');
// Fixer l'aspect de la police
$bplot2->value->SetFont(FF_ARIAL,FS_NORMAL,8);
// Modifier le rendu de chaque valeur
$bplot2->value->SetFormat('%d');
// Spécification des couleurs des barres
$bplot->SetFillColor('red');
$bplot2->SetFillColor('green');
// Couleur de l'ombre et du fond de la légende
$graph->legend->SetShadow('darkgray@0.5');
$graph->legend->SetFillColor('lightblue@0.3');
// Légendes
$legende_ouverts="Nombre de tickets ouverts (".$tableauouverttotal.")";
$bplot->SetLegend($legende_ouverts);
$legende_resolus="Nombre de tickets résolus (".$tableauresolutotal.")";
$bplot2->SetLegend($legende_resolus);
//$bplot->SetLegend("ticket ouverts");
//$bplot2->SetLegend("ticket résolus");
// Afficher les valeurs pour chaque barre
$bplot->value->Show();
$bplot2->value->Show();
// Le titre
//$titre=$tableauouverttotal." tickets ouverts, ".$tableauresolutotal." tickets résolus";
//$graph->title->Set($titre);
$titre_mois="Nombre de tickets ouverts et résolus par catégories pour ".$tableaumois." ".$tableauannee."";
$graph1->title->Set($titre_mois);
$graph1->title->SetFont(FF_FONT1,FS_BOLD);
$graph1->legend->SetPos(0.50,0.9,'center');
//$graph->SetScale('linlin',0,200);
$graph1->yaxis->scale->ticks->Set(10);
// Titre pour l'axe horizontal(axe x) et vertical (axe y)
//$graph->xaxis->title->Set("Années");
//$graph->yaxis->title->Set("Nombre de ventes");
$graph1->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
$graph1->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
// Légende pour l'axe horizontal
$graph1->xaxis->SetTickLabels($tableaucategorie);
$graph1->xaxis->SetFont(FF_ARIAL,FS_NORMAL,8);
$graph1->xaxis->SetLabelAngle(50);
// Ajouter au graphique les 2 histos
$graph1->Add($gbarplot);
// Afficher le graphique
//$graph->Stroke();
// *******************
// Création Camembert ouvert
// *******************
// Tableaux de données destinées à JpGraph
$tableaucategorie = array();
$tableauouvert = array();
$tableauouverttotal = "";
$tableaumois = "";
$moislettre = array("","Janvier","Fevrier","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Decembre");
$tableauannee = "";
$sql ='SELECT
name AS categorie,
COUNT(ID) AS ouvert
FROM `glpi_excel`
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'
GROUP BY name';
$sql2 = 'SELECT COUNT(ID) AS total_ouvert
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql3='SELECT MONTH(date) as MOIS
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql4='SELECT YEAR(date) as ANNEE
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
// Connexion à la BDD
$mysqlCnx = @mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) or die('Pb de connxion mysql');
// Sélection de la base de données
@mysql_select_db(MYSQL_DATABASE) or die('Pb de sélection de la base');
// Requête
$mysqlQuery = @mysql_query($sql, $mysqlCnx) or die('Pb de requête1');
$mysqlQuery2 = @mysql_query($sql2, $mysqlCnx) or die('Pb de requête2');
$mysqlQuery3 = @mysql_query($sql3, $mysqlCnx) or die('Pb de requête3');
$mysqlQuery4 = @mysql_query($sql4, $mysqlCnx) or die('Pb de requête4');
// Fetch sur chaque enregistrement
while ($row = mysql_fetch_array($mysqlQuery, MYSQL_ASSOC)) {
// Alimentation des tableaux de données
$tableaucategorie[] = $row['categorie'];
$tableauouvert[] = $row['ouvert'];
$total_val=array_sum($tableauouvert);
$idx=0;
}
while ($row = mysql_fetch_array($mysqlQuery2, MYSQL_ASSOC)) {
$tableauouverttotal = $row['total_ouvert'];
}
while ($row = mysql_fetch_array($mysqlQuery3, MYSQL_ASSOC)) {
$tableaumois = $moislettre[$row['MOIS']];
}
while ($row = mysql_fetch_array($mysqlQuery4, MYSQL_ASSOC)) {
$tableauannee = $row['ANNEE'];
}
//var_dump($tableaucategorie);
//var_dump($tableauouvert);
// ********************************************************************
// PARTIE : Création du graphique
// ********************************************************************
$size_tableauouvert=count($tableauouvert);
function xyCallbacks($yval) {
global $tableaucategorie, $total_val, $idx,$size_tableauouvert;
$yval_pourcent=round(10000*$yval/$total_val)/100;
$indice=$size_tableauouvert -1 - $idx++;
return ''.$tableaucategorie[$indice]." ".$yval." -> ".$yval_pourcent." %";
}
// On spécifie la largeur et la hauteur du graphique conteneur
$graph2 = new PieGraph(1200,700);
$graph2->SetScale("intlin");
// Titre du graphique
$titre_mois="Nombre de tickets ouverts(".$tableauouverttotal.") pour ".$tableaumois." ".$tableauannee." ";
$graph2->title->Set($titre_mois);
$graph2->title->SetFont(FF_FONT1,FS_BOLD);
$graph2->legend->SetPos(0.50,0.9,'center');
//$graph->title->Set("Nombre de tickets ouverts");
// Créer un graphique secteur (classe PiePlot)
$oPie = new PiePlot($tableauouvert);
// Légendes qui accompagnent chaque secteur, ici chaque année
//$oPie->SetLegends($tableaucategorie);
// position du graphique (légèrement à droite)
$oPie->SetCenter(0.4);
$oPie->value->SetFormatCallback('xyCallbacks');
$oPie->SetLabelType(PIE_VALUE_ABS);
// Format des valeurs de type entier
$oPie->value->Show();
$oPie->SetGuideLinesAdjust(1);
//$oPie->value->SetFormat('%d');
//$oPie->SetLabels($tableaucategorie);
// Ajouter au graphique le graphique secteur
$graph2->Add($oPie);
// Provoquer l'affichage (renvoie directement l'image au navigateur)
//$graph1->Stroke();
// *******************
// Création Camembert resolus
// *******************
// Tableaux de données destinées à JpGraph
$tableaucategorie = array();
$tableauresolu = array();
$tableauresolutotal = "";
$tableaumois = "";
$moislettre = array("","Janvier","Fevrier","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Decembre");
$tableauannee = "";
$sql ='SELECT
name AS categorie,
COUNT(solvedate) AS resolu
FROM `glpi_excel`
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'
GROUP BY name';
$sql2 = 'SELECT COUNT(solvedate) AS total_resolu
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql3='SELECT MONTH(date) as MOIS
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
$sql4='SELECT YEAR(date) as ANNEE
FROM glpi_excel
WHERE YEAR(date) = '.$annee.' AND MONTH(date) = '.$mois.'';
// Connexion à la BDD
$mysqlCnx = @mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) or die('Pb de connxion mysql');
// Sélection de la base de données
@mysql_select_db(MYSQL_DATABASE) or die('Pb de sélection de la base');
// Requête
$mysqlQuery = @mysql_query($sql, $mysqlCnx) or die('Pb de requête1');
$mysqlQuery2 = @mysql_query($sql2, $mysqlCnx) or die('Pb de requête2');
$mysqlQuery3 = @mysql_query($sql3, $mysqlCnx) or die('Pb de requête3');
$mysqlQuery4 = @mysql_query($sql4, $mysqlCnx) or die('Pb de requête4');
// Fetch sur chaque enregistrement
while ($row = mysql_fetch_array($mysqlQuery, MYSQL_ASSOC)) {
// Alimentation des tableaux de données
$tableaucategorie[] = $row['categorie'];
$tableauresolu[] = $row['resolu'];
$total_val=array_sum($tableauresolu);
$idx=0;
}
while ($row = mysql_fetch_array($mysqlQuery2, MYSQL_ASSOC)) {
$tableauresolutotal = $row['total_resolu'];
}
while ($row = mysql_fetch_array($mysqlQuery3, MYSQL_ASSOC)) {
$tableaumois = $moislettre[$row['MOIS']];
}
while ($row = mysql_fetch_array($mysqlQuery4, MYSQL_ASSOC)) {
$tableauannee = $row['ANNEE'];
}
//var_dump($tableaucategorie);
//var_dump($tableauresolu);
// ********************************************************************
// PARTIE : Création du graphique
// ********************************************************************
$size_tableauresolu=count($tableauresolu);
function xyCallback($yval) {
global $tableaucategorie, $total_val, $idx,$size_tableauresolu;
$yval_pourcent=round(10000*$yval/$total_val)/100;
$indice=$size_tableauresolu -1 - $idx++;
return ''.$tableaucategorie[$indice]." ".$yval." -> ".$yval_pourcent." %";
}
// On spécifie la largeur et la hauteur du graphique conteneur
$graph3 = new PieGraph(1200,700);
$graph3->SetScale("intlin");
// Titre du graphique
$titre_mois="Nombre de tickets résolus(".$tableauresolutotal.") pour ".$tableaumois." ".$tableauannee." ";
$graph3->title->Set($titre_mois);
$graph3->title->SetFont(FF_FONT1,FS_BOLD);
$graph3->legend->SetPos(0.50,0.9,'center');
//$graph->title->Set("Nombre de tickets ouverts");
// Créer un graphique secteur (classe PiePlot)
$oPie = new PiePlot($tableauresolu);
// Légendes qui accompagnent chaque secteur, ici chaque année
//$oPie->SetLegends($tableaucategorie);
// position du graphique (légèrement à droite)
$oPie->SetCenter(0.4);
$oPie->value->SetFormatCallback('xyCallback');
$oPie->SetLabelType(PIE_VALUE_ABS);
// Format des valeurs de type entier
$oPie->value->Show();
$oPie->SetGuideLinesAdjust(1);
//$oPie->value->SetFormat('%d');
//$oPie->SetLabels($tableaucategorie);
// Ajouter au graphique le graphique secteur
$graph3->Add($oPie);
// Provoquer l'affichage (renvoie directement l'image au navigateur)
//$graph->Stroke();
}
$mgraph = new MGraph();
$xpos1=3;$ypos1=3;
$xpos2=3;$ypos2=700;
$xpos3=3;$ypos3=1400;
$xpos4=3;$ypos4=2100;
$mgraph->Add($graph,$xpos1,$ypos1);
$mgraph->Add($graph1,$xpos2,$ypos2);
$mgraph->Add($graph2,$xpos3,$ypos3);
$mgraph->Add($graph3,$xpos4,$ypos4);
$mgraph->Stroke();
?> |
Partager