setBackgroundGradient( new LinearGradient( new VeryLightGray, new White, 0 ) ); $graph->title->set("Pie (example 6)"); $values = array(8, 4, 6, 2, 5, 3, 4); $plot = new Pie($values); $plot->setCenter(0.5, 0.55); $plot->setSize(0.7, 0.6); $plot->set3D(5); $plot->setBorderColor(new Black); $plot->legend->hide(TRUE); $graph->add($plot); $graph->draw(); ?>