bbone/assets/default/flot.orderbars
2022-12-26 14:03:09 +05:30
..
examples template:GWM 2022-12-26 14:03:09 +05:30
js template:GWM 2022-12-26 14:03:09 +05:30
.bower.json template:GWM 2022-12-26 14:03:09 +05:30
README.md template:GWM 2022-12-26 14:03:09 +05:30

flot-orderBars

Fork of the Flot OrderBars plugin found here: http://www.benjaminbuffet.com/public/js/jquery.flot.orderBars.js

Improvements

Compatability with Flot Stack Plugin

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.