SetShadow(); $graph->title->Set($titolo); $graph->title->SetFont(FF_FONT1,FS_BOLD); $graph ->legend->Pos( 0.02,0.85,"left" ,"center"); $graph->SetBackgroundImage("../images/logo.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.5,0.5); $graph->Add($p1); $graph->Stroke(); ?>