-
Notifications
You must be signed in to change notification settings - Fork 11
/
README
42 lines (24 loc) · 1.71 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
AnnotatedTimeline
=================
In the view:
<%= annotated_timeline(daily_counts_by_type, width, height, 'div-name', options) %>
daily_counts_by_type should look like:
{Datetime1 => { :foo=>123, :bar=>100}, Datetime2 => { :foo=>736, :bar=>423}, Datetime3 => { :foo=>412, :bar=>678 } }
This will graph foo versus bar over time.
***Google Visualization API Doc: http://code.google.com/apis/visualization/documentation/gallery/annotatedtimeline.html
***Note that at the moment, annotations are not supported.
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.
Annotations *not supported at the moment*
===========
:allowHtml
:annotationsWidth
:displayAnnotations
:displayAnnotationsFilter