Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// $Id: horizbarex4.php,v 1.4 2002/11/17 23:59:27 aditus Exp $
3
include ("../jpgraph.php");
4
include ("../jpgraph_bar.php");
5
 
6
$datay=array(1992,1993,1995,1996,1997,1998,2001);
7
 
8
// Size of graph
9
$width=400;
10
$height=500;
11
 
12
// Set the basic parameters of the graph
13
$graph = new Graph($width,$height,'auto');
14
$graph->SetScale("textlin");
15
 
16
$top = 60;
17
$bottom = 30;
18
$left = 80;
19
$right = 30;
20
$graph->Set90AndMargin($left,$right,$top,$bottom);
21
 
22
// Nice shadow
23
$graph->SetShadow();
24
 
25
// Setup labels
26
$lbl = array("Andrew\nTait","Thomas\nAnderssen","Kevin\nSpacey","Nick\nDavidsson",
27
"David\nLindquist","Jason\nTait","Lorin\nPersson");
28
$graph->xaxis->SetTickLabels($lbl);
29
 
30
// Label align for X-axis
31
$graph->xaxis->SetLabelAlign('right','center','right');
32
 
33
// Label align for Y-axis
34
$graph->yaxis->SetLabelAlign('center','bottom');
35
 
36
// Titles
37
$graph->title->Set('Year Married');
38
 
39
// Create a bar pot
40
$bplot = new BarPlot($datay);
41
$bplot->SetFillColor("orange");
42
$bplot->SetWidth(0.5);
43
$bplot->SetYMin(1990);
44
 
45
$graph->Add($bplot);
46
 
47
$graph->Stroke();
48
?>