SetScale('lin'); $graph->title->Set('Polar plot #2'); $graph->title->SetFont(FF_FONT2,FS_BOLD); $graph->title->SetColor('navy'); // Hide last labels on the Radius axis // They intersect with the box otherwise $graph->axis->HideLastTickLabel(); $p = new PolarPlot($data); $p->SetFillColor('lightred@0.5'); $graph->Add($p); $graph->Stroke(); ?>