在悬停时删除 chartjs 饼图突出显示

Remove chartjs pie chart highlight on hover

enter image description here

上面,当我将鼠标悬停在图表上时,它突出显示了我悬停的部分并带有灰色边框。我该怎么做才能删除它。

您可以使用 hoverBorderWidth 属性 删除悬停时的边框,如下所示:

var myDoughnutChart = new Chart(ctx, {
    type: 'doughnut',
    data: {
      datasets: [
        data: [//data here],
        hoverBorderWidth: 0
      ]
    },
    options: options
});