I'm trying to create a stacked bar chart using Rails Chartkick gem and I'm using Google charts API.
I have use this line to generate the bar chart using chartkick.
<%= bar_chart data, :library => {:isStacked => true} %>
But what i'm getting is a simple bar chart not a stacked one.My question is what is the structure of the data which i should pass to data
parameter. I have try passing an array, like(from google charts samples)
[['Genre', 'Fantasy & Sci Fi', 'Romance', 'Mystery/Crime', 'General','Western', 'Literature', { role: 'annotation' } ],['2010', 10, 24, 20, 32, 18, 5, '']]
but it didn't work.