我正在使用 Chartjs-plugin-datalabels,并且在大图表中显示较小的数据集时值重叠
这是 Chartjs-data-plugin 配置
options: {
plugins: {
datalabels: {
color: 'black',
clamp:true,
display: function(context) {
return context.dataset.data[context.dataIndex] >= 1;
}
}
}
}
Run Code Online (Sandbox Code Playgroud)