Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// A simple Polar graph, example 2
3
 
4
include "../jpgraph.php";
5
include "../jpgraph_polar.php";
6
 
7
 
8
$data = array(0,1,10,2,30,25,40,60,
9
	      50,110,60,160,70,210,75,230,80,260,
10
	      85,270,90,280,
11
	      95,270,100,260,105,230,
12
	      110,210,120,160,130,110,140,60,
13
	      150,25,170,2,180,1);
14
 
15
 
16
$graph = new PolarGraph(300,350);
17
$graph->SetScale('lin');
18
 
19
$graph->title->Set('Polar plot #2');
20
$graph->title->SetFont(FF_FONT2,FS_BOLD);
21
$graph->title->SetColor('navy');
22
 
23
// Hide last labels on the Radius axis
24
// They intersect with the box otherwise
25
$graph->axis->HideLastTickLabel();
26
 
27
$p = new PolarPlot($data);
28
$p->SetFillColor('lightred@0.5');
29
 
30
$graph->Add($p);
31
 
32
$graph->Stroke();
33
 
34
?>