Hello,
When you have only one PieSlice displayed in your PieChart, it displayed a blank area at the top right. To avoid this graphical issue, edit your PieChart.java file at line 50 and change
float padding = 2
to
float padding = slices.size() > 1 ? 2 : 0;