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

Last change on this file was 42, checked in by marrucho, 10 years ago
File size: 965 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$graph->yaxis->scale->SetGrace(20);
11
12// Add a drop shadow
13$graph->SetShadow();
14
15// Adjust the margin a bit to make more room for titles
16$graph->img->SetMargin(40,30,20,40);
17
18// Create a bar pot
19$bplot = new BarPlot($datay);
20
21// Adjust fill color
22$bplot->SetFillColor('orange');
23$bplot->value->Show();
24$graph->Add($bplot);
25
26// Setup the titles
27$graph->title->Set("Bar graph with Y-scale grace");
28$graph->xaxis->title->Set("X-title");
29$graph->yaxis->title->Set("Y-title");
30
31$graph->title->SetFont(FF_FONT1,FS_BOLD);
32$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
33$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
34
35// Display the graph
36$graph->Stroke();
37?>
Note: See TracBrowser for help on using the repository browser.