[Chartjs]-In chartJS, change label color onhover

0👍

inside of your dataset
datasets: [{
data: [2000, 4000, 6000, 8000, 10000, 12000, 14000],
backgroundColor: ["#73BFB8", "#73BFB8", "#73BFB8", "#73BFB8", "#73BFB8", "#73BFB8", "#73BFB8"],
}]

try adding
hoverBackgroundColor:

Leave a comment