I tried to adapt this example in Google Chart. To re-frame
framework, reagent
. I would like to create a real-time chart, based on subscriptions. I tested with a simple counter =+-1.
I got error: Assert failed: Render must be a function, not nil
(ifn? render-fun)
.
(defn draw-demo-chart
[d]
(let [[columns vectors options chart] (r/children d)
data (new js/google.visualization.DataTable)]
(doall ;gotta keep the doall on maps. lazy sequence...
(map (fn [[type name]]
(.addColumn data type name)) columns))
(.addRows data vectors)
(.draw chart data options)
(.load js/google "visualization" "1" (clj->js {:packages ["corechart" "orgchart" "calendar" "map" "geochart"]}))
(.setOnLoadCallback js/google draw-demo-chart)
))
(defn draw-demo-chart-container
[]
(let [count (re-frame/subscribe [:count])
columns (reaction [["date" "X"] ["number" "Y"]])
vectors (reaction (clj->js [[(new js/Date "07/11/14") 145] [(new js/Date "07/12/14") 15]
[(new js/Date "07/13/14") 23] [(new js/Date "07/14/14") 234]]))
options (reaction (clj->js {:title (str @count)}))
chart (reaction (new js/google.visualization.LineChart (.getElementById js/document "linechart"))) ]
(fn []
[draw-demo-graph @columns @vectors @options @chart])))
(def draw-demo-graph
(r/create-class {:reagent-render draw-demo-chart
:component-did-mount draw-demo-chart
:component-did-update draw-demo-chart}))
There are several challenges to using the Google Charts API:
I suggest using a flag to record whether the API is ready or not, this will allow it to render even if the API load after the component is mounted.
draw
on a HTML element:The HTML Element will only exist if the component has mounted. You could use a
ref
to conveniently get the HTML element (otherwise you'll need to either save a reference to in on mount, or search for it).You'll want to redraw any time any of the inputs change (which the above
ref
example does).I suggest a convenience method for getting the data source:
Now you can use your chart with reactive values!
Full code listing is at https://github.com/timothypratley/google-chart-example