I have a Rails 3.2.14 app that I'd like to add graphs to on our app's dashboard.
I've looked at HighCharts, and it seems like a really good option though there's a license fee associated with this so I'm looking for other options to easily graph data. I've also watched the Railscast Morris.JS tutorial and it might be a good fit since it's free.
I have a model (Call) where I'd like to graph the calls by hour for the last 24 hours. I'd also like to do other charts for calls by day for the last week, calls by day for the last month. Using either HighCharts (if we decide to pay for it) or Morris.js, what's the best way to do this?
I also am looking at Chartkick as a simple way to embed graphs into my app but haven't had much experience with this.