SetScale("textlin"); $graph->img->SetMargin(40,20,30,40); $graph->title->Set("CSIM example with bar and line"); $graph->title->SetFont(FF_FONT1,FS_BOLD); // Setup axis titles $graph->xaxis->title->Set("X-title"); $graph->yaxis->title->Set("Y-title"); // Create the linear plot $lineplot=new LinePlot($ydata); $lineplot->mark->SetType(MARK_FILLEDCIRCLE); $lineplot->mark->SetWidth(5); $lineplot->mark->SetColor('black'); $lineplot->mark->SetFillColor('red'); $lineplot->SetCSIMTargets($targ,$alt); // Create line plot $barplot=new barPlot($ydata2); $barplot->SetCSIMTargets($targ,$alt); // Add the plots to the graph $graph->Add($lineplot); $graph->Add($barplot); $graph->StrokeCSIM(); ?>