Skip to content

Latest commit

 

History

History
53 lines (21 loc) · 675 Bytes

README.md

File metadata and controls

53 lines (21 loc) · 675 Bytes

README

Create beautiful Javascript charts with one line of Ruby on Rails

include the gem in your Gemfile:

gem 'chartkick'

And then execute:

$ bundle install

Steps:

1.rails g model student

2.rake db:migrate

3.rails g controller students index

index.html.erb

<%= pie_chart Student.group(:course).count %>

<%= column_chart  Student.group(:course).count %>

pie-chart

Alt text

column-chart

Alt text