SetShadow(); // Create the titles for the axis $titles = $gDateLocale->GetShortMonth(); $graph->SetTitles($titles); $graph->SetColor('lightyellow'); // ADjust the position to make more room // for the legend $graph->SetCenter(0.45,0.5); // Add grid lines $graph->grid->Show(); $graph->grid->SetColor('darkred'); $graph->grid->SetLineStyle('dashed'); $plot = new RadarPlot($data); $plot->SetFillColor('lightblue'); $plot->SetLegend("QA results"); // Add the plot and display the graph $graph->Add($plot); $graph->Stroke(); ?>