setAntiAliasing(TRUE); $x = array( 1, 2, 5, 0.5, 3, 8, 7, 6, 2, -4 ); $plot = new LinePlot($x); // Set a background gradient $plot->setBackgroundGradient( new LinearGradient( new Color(210, 210, 210), new Color(255, 255, 255), 0 ) ); // Set semi-transparent background gradient $plot->setFillGradient( new LinearGradient( new Color(230, 150, 150, 20), new Color(230, 230, 180, 50), 90 ) ); $plot->yAxis->setLabelPrecision(1); $graph->add($plot); $graph->draw(); ?>