Fork me on GitHub

Few examples


Multi-series LineChart

<%= line_chart Event.select("count(*) as Visit", "count(distinct(user_id)) as Visitor").group_by_date %>
Loading...

Multi-columns Table

<%= table_chart Event.select("count(*) as Visit", "count(distinct(user_id)) as Visitor").group_by_date %>

Loading...

And many more...

Rorschart supports many more charts. Have a look to the Google Charts documentation.

Credits

Rorschart is inpired by chartkick from Andrew Kane. Rorschart was design with a different approach of data handling and especially regarding multiple series management to allow multiple series Graphs and Tables creation right from an ActiveRecord query.