Closed GoogleCodeExporter closed 9 years ago
I found the problem.
In XYChart class the size for the Map<Integer, double[]> mCalcRange is lower
than ScaleCount from mRenderer, in this case the array returned from the method
getCalcRange(int scale) is null.
I bypass the problem amending XYChart class using the following code in line
877:
double[] calcRange = getCalcRange(scale);
realMinX = calcRange != null ? calcRange[0] : realMinX;
realMaxX = calcRange != null ? calcRange[1] : realMaxX;
realMinY = calcRange != null ? calcRange[2] : realMinY;
realMaxY = calcRange != null ? calcRange[3] : realMaxY;
I hope it helps others.
Cheers,
Andre
Original comment by anlug...@gmail.com
on 13 Dec 2013 at 7:02
Thanks.
Original comment by 4viewsoft@gmail.com
on 7 Jan 2014 at 9:56
Original issue reported on code.google.com by
anlug...@gmail.com
on 10 Dec 2013 at 4:32Attachments: