SetScale("textlin"); $graph->SetMargin(25,10,30,30); $graph->title->SetFont(FF_ARIAL,FS_BOLD,12); $graph->title->Set('The Title'); $graph->subtitle->SetFont(FF_ARIAL,FS_BOLD,10); $graph->subtitle->Set('The Subtitle'); $graph->subsubtitle->SetFont(FF_ARIAL,FS_ITALIC,9); $graph->subsubtitle->Set('The Subsubitle'); // Create the linear plot $lineplot=new LinePlot($ydata); $lineplot->SetColor("blue"); // Add the plot to the graph $graph->Add($lineplot); // Display the graph $graph->Stroke(); ?>