[Chartjs]-Hide legends in Chartjs

1๐Ÿ‘

โœ…

I found the solution by adding displayColors:false in tooltips option like this

    tooltips: {
        displayColors:false,
        callbacks: {
           label: function(tooltipItem) {
                  return tooltipItem.yLabel;
           }
        }
    }

Now the legend are not shown, I hope it helps someone with similar issue.

Leave a comment