Chartjs-How to show data value on bar chart body rather than using tooltip?

0👍

Can you post some code so we can see what your options look like?

In general though. In your options you can configure the different axis. The data would display on the chart body and tooltip by default. Do you have something like this in your code?

yAxes:[{
    display:false,
}],

You can also disable the tooltip if you’d like by adding the following to your options.

tooltips: {
    enabled: false
}

Leave a comment