在 vue-chartJS 中更改图例的位置
Change Position of legend in vue-chartJS
我是 Vue-ChartJs 的新手,对此非常好奇:
如何将图例位置更改为图表底部?
在您的图表选项对象中使用:
const chartOptions = {
// other options...
legend: {
position: 'bottom'
}
}
我是 Vue-ChartJs 的新手,对此非常好奇:
如何将图例位置更改为图表底部?
在您的图表选项对象中使用:
const chartOptions = {
// other options...
legend: {
position: 'bottom'
}
}