Search code examples
javascriptvue.jsvuexvuex-modulesvue-chartjs

Pie chart doesn't render completely


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?


Solution

  • 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);
    }