SetScale("textlin"); $graph->SetMargin(25,10,20,20); // Add 10% grace ("space") at top and botton of Y-scale. $graph->yscale->SetGrace(10); // Create a bar pot $bplot = new BarPlot($datay); $bplot->SetFillColor("lightblue"); // Position the X-axis at the bottom of the plotare $graph->xaxis->SetPos("min"); $graph->ygrid->Show(false); // .. and add the plot to the graph $graph->Add($bplot); // Add band $band = new PlotBand(HORIZONTAL,BAND_RDIAG,15,35,'khaki4'); $band->ShowFrame(false); $graph->Add($band); // Set title $graph->title->SetFont(FF_ARIAL,FS_BOLD,10); $graph->title->SetColor('darkred'); $graph->title->Set('BAND_RDIAG'); $graph->Stroke(); ?>