jQuery cssbipolarchart Plugin Demos

Demo 1

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

Data Format:

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





Demo 2

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

Data Format:

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