1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?php
include_once ("jpGraph/jpgraph.php");
include_once ("jpGraph/jpgraph_line.php");
// Il faut mettre des valeurs dans un tableau.
// Vous pouvez les récupérer d'une base de données ou autres...
$ydata = array(6,5,25,12,5,10,32,13,5,21);
// On créé l'objet Graph. Ces deux appels sont toujours nécessaires.
$graph = new Graph(400,300);
$graph->SetScale("textlin");
// On créé un tracé
$lineplot=new LinePlot($ydata);
// On ajoutte ce tracé au graph
$graph->Add($lineplot);
// On affiche le graphique
$graph->Stroke();
?> |
Partager