SetScale('textlin'); $graph->SetMarginColor('white'); // Setup title $graph->title->Set('Acc bar with gradient'); // Create the first bar $bplot = new BarPlot($datay1); $bplot->SetFillGradient('AntiqueWhite2','AntiqueWhite4:0.8',GRAD_VERT); $bplot->SetColor('darkred'); $bplot->SetWeight(0); // Create the second bar $bplot2 = new BarPlot($datay2); $bplot2->SetFillGradient('olivedrab1','olivedrab4',GRAD_VERT); $bplot2->SetColor('darkgreen'); $bplot2->SetWeight(0); // And join them in an accumulated bar $accbplot = new AccBarPlot(array($bplot,$bplot2)); $accbplot->SetColor('darkgray'); $accbplot->SetWeight(1); $graph->Add($accbplot); $graph->Stroke(); ?>