🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

cssbipolarchart is a jQuery plugin which uses plain HTML5 and CSS to draw animated bipolar dual-Y bar charts on the webpage.

Bar-chart bipolar-chart

Documentation

cssbipolarchart

jQuery plugin to draw html5/CSS based bipolar bar chart

Demo

For bipolar chart

$("#example1").drawCSSBipolarChart({           data: sampleData1,           bipolar: true })

Data Format

[   ["left label 1", "right label 1", 0.3],   ["left label 2", "right label 2", 0.4] ]

For simple bar chart

$("#example1").drawCSSBipolarChart({         data: sampleData1,         bipolar: true })

Data Format

[ ["left label 1", 0.3], ["left label 2", 0.4] ]

TODO:

  • Add jQuery manifest info
  • Cross browser tests

You May Also Like