Dave
Dave

Reputation: 7359

chart.js.... How to delete the number over the bar?

I am new using chart.js.

I have this image:

enter image description here

I am trying to delete the number over the bar, how can I do it? I am using Angular 9 and typescript but I need to show it only when you click on the bar.

thx

Upvotes: 0

Views: 36

Answers (1)

Dave
Dave

Reputation: 7359

The solution for mi is that:

plugins: {
      datalabels: {
        ...
        formatter: function(value, context) {
            return "";
        }
      }
    }

Upvotes: 1

Related Questions