adopted-ember-addons / adopted-ember-addons/ember-cli-chart

Chart not working from model

Aperta
#108 1 commento 1 reazione 0 assegnatari Vedi su GitHub
Lingua principale
JavaScript
Stelle
138
Fork
76
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

I just started using this. I'm using the [screencast](https://www.emberscreencasts.com/posts/46-bar-charts-with-ember-cli-chart) from the [README](https://github.com/aomran/ember-cli-chart/blob/master/README.md) as a reference.

In my case, using `mapBy` on a model causes the chart to show no data. Just the background grid lines. When I hard-code the same data from my models, the chart _does_ work.

I'm guessing this might have something to do with the async nature of models and calculations. Perhaps the data is passed to the chart before the promises are resolved. How do you guys work around this?

I've tried doing the `await` thing, but this adaption from the example screencast does not work either:

```
numberData: computed('model', async function() {
const model = await this.get('model')
const labels = await model.mapBy('label')
const data = await model.mapBy('value')

return {
labels,
datasets: [{
label: 'Hours',
data
}]
}
})
```

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.