Chartjs-Hide/disable tootlip on specific graph values

0👍

I found the solution in another post.

I have used filter callback

tooltips: {
    filter: function (tooltipItem) {
        return tooltipItem.datasetIndex === 0  ||  8.23;
    }
}

Leave a comment