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?
In your chart options object use this:
const chartOptions = { // other options... legend: { position: 'bottom' } }