I'm new to Vue-ChartJs, and got really curious about this:

How do I change the legend position to the bottom of the graph?
chartOptions: {
// other options...
plugins: {
legend: {
position: 'right'
}
}
}
In your chart options object use this:
const chartOptions = {
// other options...
legend: {
position: 'bottom'
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With