christianesperar 5f94c42453 Add Flot plugin to bower | 8 лет назад | |
---|---|---|
.. | ||
examples | 8 лет назад | |
js | 8 лет назад | |
.bower.json | 8 лет назад | |
README.md | 8 лет назад |
Fork of the Flot OrderBars plugin found here: http://www.benjaminbuffet.com/public/js/jquery.flot.orderBars.js
The main improvement I've made is compatability with the Flot Stack plugin.
To use the 2 together:
Ensure that your data is well formed. Each series should contain a bars object with an order integer, like so:
var series = [];
series.push({
data: [], // your raw data
bars: {
order: 0
}
});
series.push({
data: [], // your raw data
bars: {
order: 1
}
});
Ensure that the order bars plugin is loaded before the stack plugin.
See the example for more information.