|
|
|
|
|
by perokreco
4607 days ago
|
|
Ember's object model is really awesome (http://emberjs.com/guides/object-model/computed-properties/)
By writing our charting library with Ember we can make use of their object model while also making it super easy to use the charts inside Ember applications. As per my example below: {{time-series-chart
barData=barData
lineData=lineData
selectedInterval=selectedInterval
}}
By using Ember we get all the bindings for free. |
|