options: {
plugins: {
tooltip: {
enabled: false
}
}
}
The above code will disable the default tooltips for charts that contain options named object and you place the above code inside them.
Live Demo
To disable default tooltips globally on all charts you can use the below code.
Chart.defaults.global.tooltips.enabled = false;
0 Comments