如何在chartjs中将饼图悬停时突出显示相应的图例?
尝试突出显示悬停图例上的饼图相应切片,现在需要反之亦然。我使用 ChartJS 4.3 作为规范,并使用 React 来实现
这个例子应该对你有帮助
const ctx = document.getElementById('myChart');
new Chart(ctx, {
type: 'pie',
data: {
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderWidth: 1
}]
},
});
基本示例