source: trunk/xgraph/jpgraph/Examples/example2.php

Last change on this file was 42, checked in by marrucho, 10 years ago
File size: 800 bytes
Line 
1<?php // content="text/plain; charset=utf-8"
2require_once ('jpgraph/jpgraph.php');
3require_once ('jpgraph/jpgraph_line.php');
4
5// Some (random) data
6$ydata = array(11,3,8,12,5,1,9,13,5,7);
7
8// Size of the overall graph
9$width=350;
10$height=250;
11
12// Create the graph and set a scale.
13// These two calls are always required
14$graph = new Graph($width,$height);
15$graph->SetScale('intlin');
16
17// Setup margin and titles
18$graph->SetMargin(40,20,20,40);
19$graph->title->Set('Calls per operator');
20$graph->subtitle->Set('(March 12, 2008)');
21$graph->xaxis->title->Set('Operator');
22$graph->yaxis->title->Set('# of calls');
23
24
25// Create the linear plot
26$lineplot=new LinePlot($ydata);
27
28// Add the plot to the graph
29$graph->Add($lineplot);
30
31// Display the graph
32$graph->Stroke();
33?>
Note: See TracBrowser for help on using the repository browser.