Subversion Repositories Sites.obs-saisons.fr

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 aurelien 1
<?php
2
$jpgraph = "/usr/local/lib/php/jpgraph-1.17";
3
include ("$jpgraph/jpgraph.php");
4
include ("$jpgraph/jpgraph_line.php");
5
 
6
$ydata = array(12,17,22,19,5,15);
7
 
8
$graph = new Graph(250,200);
9
$graph->SetScale("textlin",3,35);
10
$graph->SetTickDensity(TICKD_DENSE);
11
$graph->yscale->SetAutoTicks();
12
 
13
$graph->title->Set('Manual scale, auto ticks');
14
$graph->title->SetFont(FF_FONT1,FS_BOLD);
15
 
16
$line = new LinePlot($ydata);
17
$graph->Add($line);
18
 
19
// Output graph
20
$graph->Stroke();
21
 
22
?>
23
 
24