I would like to know if is it possible to add a custom tooltip on highchart legend during on hover event.
I'm currently able to detect the event but i have no idea on how create the tooltip using highcharts.
My code :
$('.highcharts-legend text').each(function(index, element) {
$(element).hover(function() {
alert('Display my custom tooltip');
});
});