title->set('The title'); $graph->border->setStyle(Line::DASHED); $graph->border->setColor(new DarkGray); $values = array(19, 42, 15, -25, 3); $plot = new BarPlot($values); $plot->setSize(1, 0.96); $plot->setCenter(0.5, 0.52); $plot->setBarColor( new VeryLightPurple(25) ); $graph->add($plot); $graph->draw(); ?>