[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(350,250,"auto");
|
---|
| 20 | $graph->SetShadow();
|
---|
| 21 |
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | $graph->title->Set($titolo);
|
---|
| 25 | $graph->title->SetFont(FF_FONT1,FS_BOLD);
|
---|
[105] | 26 | $graph ->legend->Pos( 0.52,0.70,"left" ,"center");
|
---|
[2] | 27 | $graph->SetBackgroundGradient('white','yellow',GRAD_HOR,BGRAD_MARGIN);
|
---|
| 28 |
|
---|
[105] | 29 |
|
---|
| 30 | //$graph->SetBackgroundImagePos(1, 100);
|
---|
| 31 | $graph->SetBackgroundImage("../images/$logo",BGIMG_COPY);
|
---|
| 32 |
|
---|
[2] | 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);
|
---|
[105] | 40 | $p1->SetCenter(0.25,0.65);
|
---|
[2] | 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 |
|
---|