【发布时间】:2020-04-22 07:16:38
【问题描述】:
我需要所有图例条目始终来自新行:
虽然我现在有这种情况:
我一直在搜索 Vue Chart.js legend 或 legend label 选项来帮助我,但我找不到。也许有人知道这样的选择?
我的代码:
export default {
extends : Pie,
computed: {....},
mounted() {
this.renderChart({ .... }, {
responsive : true,
maintainAspectRatio: false,
legend : {
position: 'bottom',
align: "start",
labels:{
boxWidth: 20,
usePointStyle:true
???
}
}
});
}
};
【问题讨论】: