I have a Rails 3.2.14 application where I use chartkick and groupdate gem to try to create some basic charts.
When I load my view, I get the error message: Error Loading Chart: No adapter found
Here is what my view code looks like:
index.html.erb
<%= line_chart Call.group_by_week(:created_at).count %>
Here is my application layout, including chartkick and yielding chart_js application.html.erb (layout)
<%= javascript_include_tag "application", "chartkick" %> <%= yield :charts_js %>
Can someone tell me why I get this error and how to fix it? I would really like to start using Chartkick to create simple charts.
source share