繁体   English   中英

在 vue-chartJS 中更改图例的 Position

[英]Change Position of legend in vue-chartJS

我是 Vue-ChartJs 的新手,对此非常好奇:

图例位置

如何将图例 position 更改为图表底部?

在您的图表选项 object 中使用:

const chartOptions = {
  // other options...
  legend: {
    position: 'bottom'
  }
}
chartOptions: {
// other options...
      plugins: {
        legend: {
          position: 'right'
          }
      }
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM