[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");
|
---|
[346] | 11 | require_once ('jpgraph_pie3d.php');
|
---|
[2] | 12 | $e=$_GET['e'];$f=$_GET['f'];$e1=$_GET['e1'];$f1=$_GET['f1'];
|
---|
| 13 | $titolo=$_GET['titolo'];
|
---|
| 14 | if (isset($_GET['cop'])) $cop=$_GET['cop'];else $cop='';
|
---|
[346] | 15 | if (isset($_GET['x'])) $dim_x=$_GET['x']; else $dim_x='450';
|
---|
| 16 | if (isset($_GET['y'])) $dim_y=$_GET['y']; else $dim_y='300';
|
---|
[2] | 17 | if (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();
|
---|
[346] | 22 | $theme_class= new VividTheme;
|
---|
| 23 | $graph->SetTheme($theme_class);
|
---|
[2] | 24 | $graph->title->Set($titolo);
|
---|
| 25 | $graph->title->SetFont(FF_FONT1,FS_BOLD);
|
---|
[346] | 26 | $graph->legend->Pos( 0,0.41,"left" ,"center");
|
---|
| 27 | $graph->legend->SetColumns(1);
|
---|
[105] | 28 | $graph->SetBackgroundImage("../images/$logo",BGIMG_COPY);
|
---|
[2] | 29 |
|
---|
[105] | 30 | $graph->SetBackgroundGradient('red','yellow',GRAD_HOR,BGRAD_MARGIN);
|
---|
[2] | 31 |
|
---|
[346] | 32 | $p1 = new PiePlot3D($data);
|
---|
[2] | 33 | $p1->value->SetFormat('');
|
---|
| 34 | $p1->value->Show();
|
---|
| 35 | $p1->SetLegends($legend);
|
---|
[346] | 36 | $p1->SetCenter(0.65,0.35);
|
---|
[2] | 37 |
|
---|
| 38 | $graph->Add($p1);
|
---|
[346] | 39 | $p1->ExplodeSlice(1);
|
---|
[2] | 40 | $graph->Stroke();
|
---|
| 41 |
|
---|
| 42 | ?>
|
---|
| 43 |
|
---|
| 44 |
|
---|