Dimple.js multi series bar not stacked
Here is sample code... var svg = dimple.newSvg("#chartContainer", 600, 400), chart = null, s1 = null, s2 = null, x = null, y1 = null, y2 = null, data = [ { "ID" : "1", "Value 1" : 100000, "Value 2" : 110000 }, { "ID" : "2", "Value 1" : 90000, "Value 2" : 145000 }, { "ID" : "3", "Value 1" : 140000, "Value 2" : 60000 } ]; chart = new dimple.chart(svg, data); x = chart.addCategoryAxis("x", "ID"); y1 = chart.addMeasureAxis("y", "Value 1"); y2 = chart.addMeasureAxis("y", "Value 2"); s1 = chart.addSeries(null, dimple.plot.bar, [x, y1]); s2 = chart.addSeries(null, dimple.plot.bar, [x, y2]); chart