slindsey3000
slindsey3000

Reputation: 4269

Displaying graphs and charts in a rails app?

I am creating a web based app for plotting stock data adjusted for things like inflation, GDP, etc...

What gem / tools would you use to take some data and create charts / graphs in a Rails app?

Shawn

Upvotes: 1

Views: 195

Answers (2)

SSR
SSR

Reputation: 6438

This provides basic and more advanced functionality to integrate charts like pie, bar, line, etc... in your rails app by providing just one line of ruby code...

http://chartkick.com/

https://github.com/ankane/chartkick

Upvotes: 0

beautifulcoder
beautifulcoder

Reputation: 11330

I am not aware of any gems for this since charts / graphs would be rendered through the browser so it is not concerned with whichever web framework. Data Driven Documents has some interesting things that it can do and it looks like it does what you need. All you need to do is feed it the right data through your back end technology.

Upvotes: 2

Related Questions