SetMargin(40,140,60,40); $graph->title->Set('Example of contour plot'); $graph->title->SetFont(FF_ARIAL,FS_BOLD,14); // For contour plots it is custom to use a box style ofr the axis $graph->legend->SetPos(0.05,0.5,'right','center'); $graph->SetScale('intint'); $graph->SetAxisStyle(AXSTYLE_BOXOUT); $graph->xgrid->Show(); $graph->ygrid->Show(); // A simple contour plot with default arguments (e.g. 10 isobar lines) $cp = new ContourPlot($data); // Display the legend $cp->ShowLegend(); // Make the isobar lines slightly thicker $cp->SetLineWeight(2); $graph->Add($cp); // ... and send the graph back to the browser $graph->Stroke(); ?>