We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2ca32 commit 36df8f0Copy full SHA for 36df8f0
NEWS.txt
@@ -6,6 +6,7 @@ Bug fixes
6
7
- Fix problem with null values and pie plugin (patch by gcruxifix,
8
issue 500).
9
+- Fix problem with threshold plugin and bars (based on patch by kaarlenkaski)
10
11
12
Flot 0.7
jquery.flot.threshold.js
@@ -80,6 +80,8 @@ events.
80
81
p.push(x);
82
p.push(y);
83
+ for (m = 2; m < ps; ++m)
84
+ p.push(origpoints[i + m]);
85
}
86
87
datapoints.points = newpoints;
@@ -98,6 +100,6 @@ events.
98
100
init: init,
99
101
options: options,
102
name: 'threshold',
- version: '1.0'
103
+ version: '1.1'
104
});
105
})(jQuery);
0 commit comments