SetShadow(); $graph->title->Set($titolo); $graph->title->SetFont(FF_FONT1,FS_BOLD); $graph ->legend->Pos( 0.05,0.75,"left" ,"center"); if(isset($logo)) $graph->SetBackgroundImage("../images/".$logo.".png",BGIMG_COPY); else $graph->SetBackgroundImage("../images/vuoto.jpg",BGIMG_COPY); // testo $txt =new Text("$cop"); $txt->Pos( 2,180); $txt->SetColor( "black"); $graph->AddText( $txt); $p1 = new PiePlot($data); $p1->value->SetFormat(''); $p1->value->Show(); $p1->SetLegends($legend); $p1->SetCenter(0.4,0.4); $graph->Add($p1); $graph->Stroke(); ?>