Skip to content

benstein/annotatedtimeline-for-rails

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnnotatedTimeline
=================

AnnotatedTimeline is a Rails plugin that wraps up the for the Annotated Timeline widget from the Google Visualization API (http://code.google.com/apis/visualization/documentation/gallery/annotatedtimeline.html)

=== Usage: 

In your controller:
@data = {
	1.day.ago => { :foo=>123, :bar=>100 },
	2.day.ago => { :foo=>345, :bar=>200 }	
}

In the view:
<%= annotated_timeline @data, width, height, 'div-name', options %>

This will create a graph of "foo" & "bar" vs time.  It will be placed in a div with ID 'div-name'.


=== Options

:colors (array of strings) The colors to use to override the default google color scheme for the chart lines and labels. Each element is a string in a valid HTML color format. For example 'red' or '#00cc00'. 

:displayExactValues (boolean) - If set to false (the default), value displayed on top may be in a shorter approximated form (56.12k instead of 56123.45). If set to true, values will appear unchanged. 

:min (number) - Use to explicitly set the minimal value to show in the Y axis.

:scaleType (string) - 'fixed'(default) or 'maximize'. If 'maximize' is used, the range of the values axis will span between the minimal and maximal values of the DataTable. If 'fixed' is used, the range of the values axis will span between zero and the maximal values of the DataTable. 

:wmode (string) - 'opaque'(default), 'window' or 'transparent'. the Window Mode (wmode) parameter for the Flash chart. 

:zoomStartTime (datetime) -  	If specified, sets the start time of the selected zoom range. 

:zoomEndTime (datetime) -  If specified, sets the end time of the selected zoom range. 


=== Currently Unsupported options:
* :allowHtml
* :annotationsWidth
* :displayAnnotations
* :displayAnnotationsFilter


===License:

* MIT License


(C) Mobile Commons 2008

About

Use the Google Visualization Annotated Timeline API with Rails

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%