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 12 isobar lines and flipped Y-coordinates $cp = new ContourPlot($data,12,true); // Display the legend $cp->ShowLegend(); // Make the isobar lines slightly thicker $graph->Add($cp); // ... and send the graph back to the browser $graph->Stroke(); ?>