I'm trying to create a custom tooltip in apexCharts heatmap using the custom parameter to add code, in this case a specific link
tooltip: {
custom: function({ series, seriesIndex, dataPointIndex, w }) {
// code to return a string with a link
}
}
But if I want a link within the tooltip, how can I make tooltip stick long enough for me to click the link? At the moment when I try to move to the tooltip to click the link it just disappear and either shows the tooltip for the next cell in the heatmap or goes away since I am outside the cell.
Probably something can be done with css transitions/delays for the apexcharts tooltips but can't figure it out.
JSFiddle: https://jsfiddle.net/2kmgpc5w/1/
BR, Daniel