Chart.Scatter
Chart.Scatter copied to clipboard
customTooltips not working properly
When setting customTooltips like in Chart.js, an event is triggered only when a cursor hovers the dot. Please see this example:
customTooltips: function(tooltip) {
if(!tooltip) {
$('#tooltip').hide(); //code never executed
}
$('#tooltip').html(tooltip.text);
$('#tooltip').show();
}
Thats why my custom tooltips allways remain visible...
Hi
I'm sorry, that did not answer for a long time. Could you give me an example on jsfiddle.net or similar site? I will use this as an error correction criterion.