在饼图中添加额外的标签

问题描述 投票:0回答:1

如果像这样的饼图,是否可以在底部添加额外的标签:

enter image description here

chart.js
1个回答
0
投票

是,您可以按照以下步骤操作:

 options: {
  legend: {
  display: true,
    title: {
        display: true,
        text: 'Custom Chart Title',
        position: 'bottom'
    }
}

您还可以在以下官方文档中找到更多详细信息:Chart JS Legend Official Documentation

© www.soinside.com 2019 - 2024. All rights reserved.