What steps will reproduce the problem?
1. Not specifically sure what it was in the data but I was occasionally
getting Javascript errors in Google Chrome. Eventually, using Chrome's
Developer tools, I found that the problem was a .toFixed parameter out of
range and the problem was in flotr-0.2.0-alpha.js
What version of the product are you using? On what operating system?
Problem was found under MS Windows on Google Chrome
Please provide any additional information below.
The correction below seems to fix the problem...
current: if(C<0){C=0}H=H.toFixed(C)
corrected: if(C==null||C<0){C=0}H=H.toFixed(C)
Original issue reported on code.google.com by al.caughey on 9 Dec 2009 at 5:30
Original issue reported on code.google.com by
al.caughey
on 9 Dec 2009 at 5:30