Closed GoogleCodeExporter closed 8 years ago
Here is the solution:
change line in function calculateRange():
if(max > 0 && axis.datamax <= 0) max = 0;
to:
if(max > 0 && axis.datamax <= 0 && axis.datamax != axis.datamin) max = 0;
The problem was that both min and max were set to 0 if autoscaleMargin was set,
which
caused problems elsewhere.
PLEASE add this to the trunk - as well as other bug fixes I have contributed. I
would
hate to have to re-apply them whenever the new version comes out.
Original comment by anz...@gmail.com
on 24 Dec 2009 at 10:24
Thank you, fixed in the next revision.
Original comment by fabien.menager
on 16 Jul 2010 at 7:26
Original issue reported on code.google.com by
anz...@gmail.com
on 24 Dec 2009 at 8:46Attachments: