Subversion Repositories Sites.obs-saisons.fr

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 1

/obs_saisons/SPIP-v1-8-3/modules/graphiques/manscaleex2.php
New file
0,0 → 1,22
<?php
$jpgraph = "/usr/local/lib/php/jpgraph-1.17";
include ("$jpgraph/jpgraph.php");
include ("$jpgraph/jpgraph_line.php");
 
$ydata = array(12,17,22,19,5,15);
 
$graph = new Graph(220,200);
$graph->SetScale("textlin",3,35);
 
$graph->title->Set('Manual scale, exact limits');
$graph->title->SetFont(FF_FONT1,FS_BOLD);
 
$line = new LinePlot($ydata);
$graph->Add($line);
 
// Output graph
$graph->Stroke();
 
?>