I can't seem to make the legendCallback
work.
I tried putting it like this:
options = {
legend: {
legendCallback: function (chart) {
console.log(chart);
return 'a';
}
}
}
OR
options = {
legend: {
},
legendCallback: function (chart) {
console.log(chart);
return 'a';
}
}
I also tried switching legend
and legendCallback
in the second one but still doesn't work nor give any error.