I am using a plugin: charts.js
On hovering a radar chart (the bullets in it) a tooltip is shown. How can I remove it?
A layout for a chart with no tooltips would look like this:
var chart = new Chart(ctx, {
type: 'line',
data: data,
options: {
tooltips: { enabled: false },
...
}
})
I know some others have said exactly this, but this is a more complete example.
This is the code to Disable the tooltip option..
Chart.defaults.global.tooltips.enabled = false;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With