SetShadow(); // Create the titles for the axis $titles = $gDateLocale->GetShortMonth(); $graph->SetTitles($titles); // Add grid lines $graph->grid->Show(); $graph->grid->SetLineStyle('dashed'); $plot = new RadarPlot($data); $plot->SetFillColor('lightblue'); // Add the plot and display the graph $graph->Add($plot); $graph->Stroke(); ?>