Fix problem with threshold plugin and bars (based on patch by kaarlenkaski, issue 348)

pull/1/head
Ole Laursen 15 years ago
parent 2d2ca32a5c
commit 36df8f08c0

@ -6,6 +6,7 @@ Bug fixes
- Fix problem with null values and pie plugin (patch by gcruxifix,
issue 500).
- Fix problem with threshold plugin and bars (based on patch by kaarlenkaski)
Flot 0.7

@ -80,6 +80,8 @@ events.
p.push(x);
p.push(y);
for (m = 2; m < ps; ++m)
p.push(origpoints[i + m]);
}
datapoints.points = newpoints;
@ -98,6 +100,6 @@ events.
init: init,
options: options,
name: 'threshold',
version: '1.0'
version: '1.1'
});
})(jQuery);

Loading…
Cancel
Save