Addepar / ember-charts

https://opensource.addepar.com/ember-charts/
Other
784 stars 131 forks source link

Scatter Plot error on "Null" Data #95

Closed artych closed 7 years ago

artych commented 9 years ago

Link: http://addepar.github.io/ember-charts/#/ember-charts/scatter Select '----' Data:

Uncaught TypeError: Cannot read property 'reduce' of null
artych commented 9 years ago

I think it could be solved by using _.reduce(data,...) instead of data.reduce(...) :

      // app/controllers/scatter.coffee
      totalPointData:
         // ...
         xValue: _.reduce(data, ((prev, d) -> prev + d.xValue), 0 )
         yValue: _.reduce(data, ((prev, d) -> prev + d.yValue), 0 )