setAntiAliasing(TRUE); $graph->title->set("Pie (example 18) - Display labels > 10 %"); $graph->title->setFont(new Tuffy(14)); $values = array(1, 5, 6, 16, 18, 19, 21, 3, 4, 7, 6); $plot = new Pie($values); $plot->setCenter(0.4, 0.55); $plot->setAbsSize(180, 180); $plot->setLabelMinimum(10); $plot->legend->setPosition(1.5); $plot->legend->shadow->setSize(0); $graph->add($plot); $graph->draw(); ?>