In the processData() function, the variable format is set in the first pass
section, but reused in second pass without being re-assigned to the correct
series.datapoints.format object. Here is the patch I used to resolve the issue:
diff -r 04ba1b45c760 static/flot/jquery.flot.js
--- a/static/flot/jquery.flot.js Mon Feb 20 09:45:36 2012 -0600
+++ b/static/flot/jquery.flot.js Wed Feb 22 11:38:23 2012 -0600
@@ -629,6 +629,7 @@
s = series[i];
points = s.datapoints.points,
ps = s.datapoints.pointsize;
+ format = s.datapoints.format;
var xmin = topSentry, ymin = topSentry,
xmax = bottomSentry, ymax = bottomSentry;
Original issue reported on code.google.com by m...@jasonmartens.com on 22 Feb 2012 at 5:39
Original issue reported on code.google.com by
m...@jasonmartens.com
on 22 Feb 2012 at 5:39