7๐
โ
You can turn off tooltips (and the associated redraw) by using the showTooltips
option
var myPieChart = new Chart(ctx).Doughnut(data, {
showTooltips: false
});
3๐
For chart.js v2, the new way to do it is to pass an empty events
array to the options.
your options:
let chartOptions = {
responsive: true,
events: [],
...
};
http://www.chartjs.org/docs/#chart-configuration-common-chart-configuration
Source:stackexchange.com