source: trunk/xgraph/jpgraph/Examples/example20.1.php

Last change on this file was 42, checked in by marrucho, 10 years ago
File size: 909 bytes
Line 
1<?php // content="text/plain; charset=utf-8"
2require_once ('jpgraph/jpgraph.php');
3require_once ('jpgraph/jpgraph_bar.php');
4
5$datay=array(12,8,19,3,10,5);
6
7// Create the graph. These two calls are always required
8$graph = new Graph(300,200);   
9$graph->SetScale("textlin");
10
11// Add a drop shadow
12$graph->SetShadow();
13
14// Adjust the margin a bit to make more room for titles
15$graph->img->SetMargin(40,30,20,40);
16
17// Create a bar pot
18$bplot = new BarPlot($datay);
19
20// Adjust fill color
21$bplot->SetFillColor('orange');
22$bplot->value->Show();
23$graph->Add($bplot);
24
25// Setup the titles
26$graph->title->Set("Bar graph");
27$graph->xaxis->title->Set("X-title");
28$graph->yaxis->title->Set("Y-title");
29
30$graph->title->SetFont(FF_FONT1,FS_BOLD);
31$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
32$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
33
34// Display the graph
35$graph->Stroke();
36?>
Note: See TracBrowser for help on using the repository browser.