source: trunk/client/modules/Elezioni/grafici/votanti_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$e=$_GET['e'];$f=$_GET['f'];$e1=$_GET['e1'];$f1=$_GET['f1'];
13$titolo=$_GET['titolo'];
14if (isset($_GET['cop'])) $cop=$_GET['cop'];else $cop='';
15if (isset($_GET['x'])) $dim_x=$_GET['x']; else $dim_x='350';
16if (isset($_GET['y'])) $dim_y=$_GET['y']; else $dim_y='200';
17if (isset($_GET['logo'])) $logo=$_GET['logo'];else $logo='';
18$data = array($e,$f);
19$legend = array("$e $e1","$f $f1");
20$graph = new PieGraph($dim_x,$dim_y,"auto");
21$graph->SetShadow();
22
23$graph->title->Set($titolo);
24$graph->title->SetFont(FF_FONT1,FS_BOLD);
25$graph ->legend->Pos( 0.55,0.75,"left" ,"center");
26
27$graph->SetBackgroundImage("../images/$logo",BGIMG_COPY);
28
29$graph->SetBackgroundGradient('red','yellow',GRAD_HOR,BGRAD_MARGIN);
30
31$p1 = new PiePlot($data);
32$p1->value->SetFormat('');
33$p1->value->Show();
34$p1->SetLegends($legend);
35$p1->SetCenter(0.45,0.5);
36
37$graph->Add($p1);
38$graph->Stroke();
39
40?>
41
42
Note: See TracBrowser for help on using the repository browser.