I want to implement some text in middle of the Doughnut chart at Charts.js The first step is 5to draw some text on the chart canvas.
When i move my cursor to red bar chartjs draw some tooltip(Red:300) on the canvas and deletes my text as a result.
How can i avoid all the canvas redraws by the chartjs after the initial chart is drawn?
I want to implement some text in middle of the Doughnut chart at Charts.js The first step is 5to draw some text on the chart canvas.
When i move my cursor to red bar chartjs draw some tooltip(Red:300) on the canvas and deletes my text as a result.
How can i avoid all the canvas redraws by the chartjs after the initial chart is drawn?
Share Improve this question asked Aug 23, 2015 at 7:10 Alexander GorelikAlexander Gorelik 4,4156 gold badges38 silver badges54 bronze badges2 Answers
Reset to default 7You can turn off tooltips (and the associated redraw) by using the showTooltips
option
var myPieChart = new Chart(ctx).Doughnut(data, {
showTooltips: false
});
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/docs/#chart-configuration-mon-chart-configuration