setAntiAliasing(TRUE); $graph->title->set("Pie (example 13)"); $values = array(12, 5, 13, 18, 10, 6, 11); $plot = new Pie($values, Pie::EARTH); $plot->setCenter(0.4, 0.55); $plot->setAbsSize(180, 180); $plot->setLegend(array( 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' )); $plot->legend->setPosition(1.5); $plot->legend->shadow->setSize(0); $graph->add($plot); $graph->draw(); ?>