如何使用chart js隐藏图表上的两个标签?
以下面的代码为例,我想隐藏图例1和图例2,但只能隐藏一个元素
const ctx = document.getElementById('chart');
const data = [1, 2, 3, 4, 5, 6, 7, 8];
const chart = new Chart(ctx, {
type: 'bar',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
// This label is removed in the filter function
label: 'Legend 1',
data: [12, 19, 3, 5, 2, 3],
}, {
label: 'Legend 2',
data: [11, 12, 33, 4, 2, 3],
}, {
label: 'Legend 3',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: 'rgba(0, 195, 255, 0.2)',
}]
},
options: {
legend: {
labels: {
filter: function(item, chart) {
// Logic to remove a particular legend item goes here
return !item.text.includes('Legend 1');
}
}
}
}
});
谢谢你
编辑1
先说清楚,我已经找到了如何隐藏一个传说,但我想隐藏不止一个。
喜欢下面的图片
3条答案
按热度按时间68de4m5k1#
在this link上找到答案
基本上,我所做的就是插入关于期权的陈述:
我相信这解决了我的问题
tez616oj2#
请在标签级别隐藏它们,而不是在选项级别隐藏它们:
q43xntqr3#
对于chartjs V3,我们花了一些时间来实现它,它是插件内的选项: