source: trunk/xgraph/jpgraph/Examples/example3.1.php @ 42

Last change on this file since 42 was 42, checked in by marrucho, 10 years ago
File size: 1.1 KB
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$graph->SetShadow();
17
18// Setup margin and titles
19$graph->SetMargin(40,20,20,40);
20$graph->title->Set('Calls per operator');
21$graph->subtitle->Set('(March 12, 2008)');
22$graph->xaxis->title->Set('Operator');
23$graph->yaxis->title->Set('# of calls');
24
25$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
26$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
27
28$graph->yaxis->SetColor('blue');
29
30// Create the linear plot
31$lineplot=new LinePlot($ydata);
32$lineplot->SetColor( 'blue' );
33$lineplot->SetWeight( 2 );   // Two pixel wide
34$lineplot->mark->SetType(MARK_UTRIANGLE);
35$lineplot->mark->SetColor('blue');
36$lineplot->mark->SetFillColor('red');
37
38// Add the plot to the graph
39$graph->Add($lineplot);
40
41// Display the graph
42$graph->Stroke();
43?>
Note: See TracBrowser for help on using the repository browser.