setBackgroundGradient( new LinearGradient( new White, new VeryLightGray, 0 ) ); $graph->title->set("Pie (example 4)"); $graph->shadow->setSize(7); $graph->shadow->smooth(TRUE); $graph->shadow->setPosition(Shadow::LEFT_BOTTOM); $values = array(8, 4, 6, 2, 5, 3, 4); $plot = new Pie($values); $plot->setCenter(0.4, 0.55); $plot->setSize(0.7, 0.6); $plot->set3D(10); $plot->setLegend(array( 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' )); $plot->legend->setPosition(1.3); $plot->legend->setBackgroundColor(new VeryLightGray(30)); $graph->add($plot); $graph->draw(); ?>