[2] | 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 |
|
---|
| 9 | include ("jpgraph.php");
|
---|
| 10 | include ("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(300,200,"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.05,0.65,"left" ,"center");
|
---|
| 27 | //$graph->SetBackgroundGradient('white','yellow',GRAD_HOR,BGRAD_MARGIN);
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 | $txt =new Text("$cop");
|
---|
| 31 | //$txt =new Text("$siteistat");
|
---|
| 32 | $txt->Pos( 2,180);
|
---|
| 33 | $txt->SetColor( "red");
|
---|
| 34 | $graph->AddText( $txt);
|
---|
| 35 | if(isset($logo)) $graph->SetBackgroundImage("../images/".$logo.".png",BGIMG_COPY);
|
---|
| 36 | else $graph->SetBackgroundImage("../images/vuoto.jpg",BGIMG_COPY);
|
---|
| 37 | // black-white
|
---|
| 38 | //$graph->AdjBackgroundImage(0.4,0.3,-1);
|
---|
| 39 |
|
---|
| 40 | $p1 = new PiePlot($data);
|
---|
| 41 | $p1->SetLabelType(PIE_VALUE_PER);
|
---|
| 42 | $p1->value->SetFormat('');
|
---|
| 43 | $p1->value->Show();
|
---|
| 44 | $p1->SetLegends($legend);
|
---|
| 45 | $p1->SetCenter(0.7,0.4);
|
---|
| 46 |
|
---|
| 47 | $graph->Add($p1);
|
---|
| 48 | $graph->Stroke();
|
---|
| 49 |
|
---|
| 50 |
|
---|
| 51 |
|
---|
| 52 |
|
---|
| 53 |
|
---|
| 54 |
|
---|
| 55 | $graph->Add($p1);
|
---|
| 56 | $graph->Stroke();
|
---|
| 57 |
|
---|
| 58 |
|
---|
| 59 |
|
---|
| 60 |
|
---|
| 61 |
|
---|
| 62 | ?>
|
---|
| 63 |
|
---|
| 64 |
|
---|