1 | <?php // content="text/plain; charset=utf-8"
|
---|
2 | require_once ('jpgraph/jpgraph.php');
|
---|
3 | require_once ('jpgraph/jpgraph_polar.php');
|
---|
4 |
|
---|
5 | //$data = array(22,12,27,40,80,48,120,40,142,27,170,12);
|
---|
6 |
|
---|
7 | $data = array(
|
---|
8 | 0,0,10,2,30,25,40,60,
|
---|
9 | 50,110,60,140,70,170,80,190,
|
---|
10 | 85,195,90,200,95,195,100,190,
|
---|
11 | 110,170,120,140,130,110,140,60,
|
---|
12 | 150,25,170,2,180,0);
|
---|
13 |
|
---|
14 | //$data2 = array(0,0,50,2,60,30,65,90,60,120,50,150,20,170,0,180);
|
---|
15 |
|
---|
16 | $data2 = array(0,0,34,56,90,90,170,65,220,90,270,120,300,60,355,10);
|
---|
17 |
|
---|
18 | $graph = new PolarGraph(350,350);
|
---|
19 | $graph->SetScale('lin',150);
|
---|
20 |
|
---|
21 | $graph->SetMarginColor('#FFE6C0');
|
---|
22 | $graph->SetType(POLAR_360);
|
---|
23 | $graph->SetClockwise(true);
|
---|
24 | $graph->Set90AndMargin(40,40,50,40);
|
---|
25 |
|
---|
26 | $graph->SetBox(true);
|
---|
27 | $graph->SetFrame(false);
|
---|
28 | $graph->axis->ShowGrid(true,false,true);
|
---|
29 | $graph->axis->SetGridColor('gray','gray','gray');
|
---|
30 |
|
---|
31 | $graph->axis->SetFont(FF_ARIAL,FS_NORMAL,8);
|
---|
32 | $graph->axis->SetTitle('X-Axis','center');
|
---|
33 |
|
---|
34 | $graph->axis->SetColor('black','black','darkred');
|
---|
35 | $graph->axis->SetAngleFont(FF_ARIAL,FS_NORMAL,8);
|
---|
36 |
|
---|
37 | $graph->title->Set('Clockwise polar plot (rotated)');
|
---|
38 | $graph->title->SetFont(FF_COMIC,FS_NORMAL,16);
|
---|
39 | $graph->title->SetColor('navy');
|
---|
40 |
|
---|
41 |
|
---|
42 |
|
---|
43 | $p = new PolarPlot($data);
|
---|
44 | $p->SetFillColor('lightblue@0.5');
|
---|
45 | $graph->Add($p);
|
---|
46 |
|
---|
47 | //$p2 = new PolarPlot($data2);
|
---|
48 | //$p2->SetFillColor('red@0.5');
|
---|
49 | //$graph->Add($p2);
|
---|
50 |
|
---|
51 | $graph->Stroke();
|
---|
52 |
|
---|
53 | ?>
|
---|