[ Index ] |
|
Code source de eGroupWare 1.2.106-2 |
1 <?php 2 include ("../jpgraph.php"); 3 include ("../jpgraph_line.php"); 4 5 6 $ydata = array(11,6,8,12,5,6,9,13,6,7); 7 8 // Create the graph. These two calls are always required 9 $graph = new Graph(300,200,"auto"); 10 $graph->SetScale("textlin"); 11 $graph->yscale->SetAutoMin(0); 12 13 // Create the linear plot 14 $lineplot=new LinePlot($ydata); 15 16 // Add the plot to the graph 17 $graph->Add($lineplot); 18 19 $graph->img->SetMargin(40,20,20,40); 20 $graph->title->Set("Example 2"); 21 $graph->xaxis->title->Set("X-title"); 22 $graph->yaxis->title->Set("Y-title"); 23 24 25 // Display the graph 26 $graph->Stroke(); 27 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 17:20:01 2007 | par Balluche grâce à PHPXref 0.7 |