I need to implement a time series graph for my rails 4 app. Its not streaming data but I need the look and feel of this but without the animation. I started looking into the documentation and it seems kinda sparse (or Im an idiot :()
But I need some help in getting started with this project and cant seem to find much after googling this. There is a gem that someone created here but again it lacks any documentation.
The wiki talks of graphite and cube, libraries that serve up data, but these are python libraries. Why would I use them?
WHere should I start?
So far im my rails app I have created a "Visualization" scaffold. Each visualization has a name, description. I plan to have the "show" method render the graphic for a visualization.
The data Im showing are:
x axis = time- scaled minute by minute
y axis = tv channels
metric to be shown = viewership stats (integers, decimals 2 sig figs)
data will be pulled from a rails + mysql db.
Where should I begin. Any help to get started would be very appreciated.
Thanks