source: trunk/client/modules/Elezioni/grafici/voti_graf.php@ 105

Last change on this file since 105 was 105, checked in by eol, 13 years ago

Sistemazione elementi grafici e di esportazione dati, stemma sui grafici (var nel config.php $ins_logo=0 per eliminare lo stemma).

File size: 1.4 KB
Line 
1<?php
2/************************************************************************/
3/* Eleonline - Raccolta e diffusione dei dati elettorali */
4/* by Luciano Apolito & Roberto Gigli */
5/* http://www.eleonline.it */
6/* info@eleonline.it luciano@aniene.net rgigli@libero.it */
7/************************************************************************/
8
9include ("jpgraph.php");
10include ("jpgraph_pie.php");
11
12$a=$_GET['a'];$b=$_GET['b'];$c=$_GET['c'];$d=$_GET['d'];
13$a1=$_GET['a1'];$b1=$_GET['b1'];$c1=$_GET['c1'];$d1=$_GET['d1'];
14$titolo=$_GET['titolo'];
15$cop=$_GET['cop'];
16$logo=$_GET['logo'];
17$data = array($a,$b,$c,$d);
18$legend = array("$a $a1","$b $b1", "$c $c1", "$d $d1");
19$graph = new PieGraph(350,250,"auto");
20$graph->SetShadow();
21
22
23
24$graph->title->Set($titolo);
25$graph->title->SetFont(FF_FONT1,FS_BOLD);
26$graph ->legend->Pos( 0.52,0.70,"left" ,"center");
27$graph->SetBackgroundGradient('white','yellow',GRAD_HOR,BGRAD_MARGIN);
28
29
30//$graph->SetBackgroundImagePos(1, 100);
31$graph->SetBackgroundImage("../images/$logo",BGIMG_COPY);
32
33// black-white
34//$graph->AdjBackgroundImage(0.4,0.3,-1);
35
36$p1 = new PiePlot($data);
37$p1->value->SetFormat('');
38$p1->value->Show();
39$p1->SetLegends($legend);
40$p1->SetCenter(0.25,0.65);
41$graph->Add($p1);
42$graph->Stroke();
43
44
45
46
47
48
49$graph->Add($p1);
50$graph->Stroke();
51
52
53
54
55
56?>
57
58
Note: See TracBrowser for help on using the repository browser.