Open GoogleCodeExporter opened 9 years ago
I fixed the issue in drawBar in BarChart.java
My fix seems to work. I used "Math.round(Math.max(yMin, maxY)" instead of
"Math.round(gradientMaxY)"
Line 202ff would be:
if (yMax > maxY) {
paint.setColor(gradientMaxColor);
canvas.drawRect(Math.round(xMin), Math.round(Math.max(yMin, maxY), Math.round(xMax),
Math.round(yMax), paint);
}
Original comment by sauberma...@gmail.com
on 19 Jul 2014 at 11:03
Original issue reported on code.google.com by
sauberma...@gmail.com
on 19 Jul 2014 at 10:37Attachments: