Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
include ("../jpgraph.php");
3
include ("../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,"auto");
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
$graph->Add($bplot);
20
 
21
// Create and add a new text
22
$txt=new Text("This is a text\nwith many\nand even\nmore\nlines of text");
23
$txt->Pos(0.5,0.5,"center","center");
24
$txt->SetFont(FF_FONT2,FS_BOLD);
25
$txt->ParagraphAlign('cenetered');
26
$txt->SetBox('yellow','navy','gray');
27
$txt->SetColor("red");
28
$graph->AddText($txt);
29
 
30
 
31
// Setup the titles
32
$graph->title->Set("A simple bar graph");
33
$graph->xaxis->title->Set("X-title");
34
$graph->yaxis->title->Set("Y-title");
35
 
36
$graph->title->SetFont(FF_FONT1,FS_BOLD);
37
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
38
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
39
 
40
// Display the graph
41
$graph->Stroke();
42
?>