Show HN: Create Javascript charts with one line of Ruby
ankane.github.io
Show HN: Create Javascript charts with one line of Ruby
1–10 of 64 posts
Re: Show HN: Create Javascript charts with one line of Ruby
#2This looks amazing. Thanks for sharing.
Re: Show HN: Create Javascript charts with one line of Ruby
#3Great meta graphing library. Love that Google Charts AND Highcharts are supported.
Re: Show HN: Create Javascript charts with one line of Ruby
#4That looks really slick. Will give it a spin.
Re: Show HN: Create Javascript charts with one line of Ruby
#5 Error Loading Chart: Please install Google Charts or HighchartsRe: Show HN: Create Javascript charts with one line of Ruby
#6The ruby wrapper lib around the JS is dead simple. Could be ported to any language with ease. Very nice work!
https://github.com/ankane/chartkick/blob/master/lib/chartkic...
Re: Show HN: Create Javascript charts with one line of Ruby
#7Error Loading Chart: Please install Google Charts or Highcharts
You have to install either library as well:
--
For Google Charts, use:
If you prefer Highcharts, use:
--
Re: Show HN: Create Javascript charts with one line of Ruby
#8Error Loading Chart: Please install Google Charts or Highcharts
Be sure you include the tag for Google Charts or Highcharts before you include chartkick.js.
Re: Show HN: Create Javascript charts with one line of Ruby
#9Error Loading Chart: Please install Google Charts or Highcharts
Did you include Google Charts or Highcharts as described in the installation instructions?
Re: Show HN: Create Javascript charts with one line of Ruby
#10The ruby wrapper lib around the JS is dead simple. Could be ported to any language with ease. Very nice work! https://github.com/ankane/chartkick/blob/master/lib/chartkic...
Thanks! I started out heavy on the Ruby side but moved most logic to the JS to make AJAX charts dead simple to implement. (render :json => chart_data)