You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
The text was updated successfully, but these errors were encountered:
johnjohndoe
pushed a commit
to johnjohndoe/HoloGraphLibrary
that referenced
this issue
Sep 15, 2014
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 line50
and changefloat padding = 2
to
float padding = slices.size() > 1 ? 2 : 0;
The text was updated successfully, but these errors were encountered: