I created a repro example here. As you can see the legenda is rendered but the graph isn't. What is causing this undesirable behaviour?
The parameters you pass to dataStatusWa
are in the opposite order.
Try changing (in App.vue):
dataStatusWa() {
return dataStatusWa(this.getStatusWa, this.getStatusWaLabel);
}
to:
dataStatusWa() {
return dataStatusWa(this.getStatusWaLabel, this.getStatusWa);
}