Skip to content

Commit

Permalink
fix a silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxuan30 committed Jun 19, 2015
1 parent bfbfc32 commit a0a2e33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class ChartYAxisRendererRadarChart: ChartYAxisRenderer
else
{
var first = ceil(Double(yMin) / interval) * interval;
if (first.isSignMinus)
if (first == 0.0 && first.isSignMinus)
{
first = -first;
}
Expand Down

0 comments on commit a0a2e33

Please sign in to comment.