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
}
]
},
},
}
},
Source:stackexchange.com