I\'ve been looking for mechanism to update the model of a Route, and has the Component (called from within the template associated with that route) reacts to that event, and re-
You just need to watch the model. No?
update: function() { var data = this.get('model').map(function(sales) { return sales.get('amount'); }); d3.select(this.$()[0]).selectAll('div.h-bar') .data(data) .call(this.get('chart')); }.property('model')