Why my Pie chart does have such gap?

My code to reproduce the problem is here:
--------------
$Data = array ( 5, 8, 7, 7); //other dataset may not show such gaps
$Legend = array ( 'first', 'second', 'third', 'fourth');
$Colors = array('red','green', 'blue', 'darkgreen');
// Create the Pie Graph.
$graph = new PieGraph(500, 280);
$graph->SetShadow();
$graph->ClearTheme();
// Set A title for the plot
$graph->title->Set("Just a title");
$graph->title->SetFont(FF_FONT1,FS_BOLD);
// Create
$p1 = new PiePlot($Data);
//legend
$p1->SetLegends($Legend);
$p1->SetCenter(0.32 );
$graph->Add($p1);
$p1->ShowBorder();
$p1->SetColor('black');
$p1->SetSliceColors($Colors); //OR per theme
$graph->Stroke('myimage.png');
echo "<img src=myimage.png alt='It is chart.'/> <BR><BR>\n";
------------------