SetScale("textlin"); // Create the linear plot $lineplot=new LinePlot($ydata); $lineplot->SetStepStyle(); // Add the plot to the graph $graph->Add($lineplot); $graph->img->SetMargin(40,20,20,40); $graph->title->Set("Example 2.6 (Line with stepstyle)"); $graph->xaxis->title->Set("X-title"); $graph->xaxis->SetPos("min"); $graph->yaxis->title->Set("Y-title"); // Display the graph $graph->Stroke(); ?>