[Chartjs]-Unable to Construct Stacked Vue-ChartJS Line Plot

1👍

You need to pass scales in the options:

...

<div class="small">
  <line-chart :chart-data="chartData" :options="options"></line-chart>
  <button @click="fillData()">Randomize</button>
</div>

...

data() {
  return {
    chartData: null,
    options: {
      scales: {
        yAxes: [
          {
            stacked: true
          }
        ]   
      },
    },
  }
},

Leave a comment