I've a ChartJS pie chart, where I draw the labels myself. This works fine - until the legend comes into play.
const options = {
layout: {
...
},
plugins: {
chartLineLabelPlugin: {
...
},
legend: {
display: true
},
}
};
Using the legend, the user can click on labels and thus hide this single data item.
The pie chart is redrawn but the afterDraw function of other plugins is never called.
afterDraw is called clicking on legend items?