JVectorMap tooltip, label

6.1k Views Asked by At

Does anyone know how to style the tooltip/label in JVectorMap http://jvectormap.com/? I can't inspect it with the firebug. I need to add z-index as it appears under the map. Also is there a way to have the markers tooltip showing the whole time instead only on hover? Thanks,

2

There are 2 best solutions below

0
On BEST ANSWER

see it here jVectorMap label is not visible, why?

onLabelShow: function(event, label, code) {
    if (code == 'it') {
        event.preventDefault();
    } else if (code == 'it') {
        label.text('bla bla bal');
    }
}
0
On

For tooltip do it in cleaner way (ReactJS):

onRegionTipShow={(e, el, code) => {
    el.css("z-index", 99);
}}