Chartjs-Chart.JS value on top disappear when tooltip show up

0๐Ÿ‘

โœ…

I found the solution you need plugin chartjs-plugin-datalabels, and add inside option chart

plugins: {
            datalabels: {
                color: 'white',
                formatter: function(value, context) {
                    return Math.round(value) + '%';
                }
            }
        }

And remove animation

Leave a comment