clearTheme(); $graph->SetScale('intlin'); $graph->img->SetMargin(40,130,20,40); $graph->SetShadow(); // Create the linear error plot $l1plot=new LinePlot($l1datay); $l1plot->SetColor('red'); $l1plot->SetWeight(2); $l1plot->SetLegend('Prediction'); // Create the bar plot $bplot = new BarPlot($l2datay); $bplot->SetFillColor('orange'); $bplot->SetLegend('Result'); // Add the plots to t'he graph $graph->Add($bplot); $graph->Add($l1plot); $graph->title->Set('Adding a line plot to a bar graph v3'); $graph->xaxis->title->Set('X-title'); $graph->yaxis->title->Set('Y-title'); $graph->title->SetFont(FF_FONT1,FS_BOLD); $graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD); $graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD); $datax = $gDateLocale->GetShortMonth(); $graph->xaxis->SetTickLabels($datax); // Display the graph $graph->Stroke(); ?>