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.4,0.55); $graph->SetSize(0.6); // Add grid lines $graph->grid->Show(); $graph->grid->SetColor('darkred'); $graph->grid->SetLineStyle('dotted'); $plot = new RadarPlot($data); $plot->SetFillColor('lightblue'); $plot->SetLegend("QA results"); $plot2 = new RadarPlot($data2); $plot2->SetLegend("Target"); $plot2->SetColor('red'); $plot2->SetFill(false); $plot2->SetLineWeight(2); // Add the plot and display the graph $graph->Add($plot); $graph->Add($plot2); $graph->Stroke(); ?>