Jqvmap工具提示不起作用。其他一切工作正常。 我的代碼如下。jqvmap工具提示不起作用
$(document).ready(function(){
// World map by jvectormap
$('#world-map').vectorMap({
map : 'world_mill_en',
backgroundColor : 'transparent',
regionStyle : {
initial: {
fill : '#e4e4e4',
'fill-opacity' : 1,
'stroke-opacity': 1
}
},
series : {
regions: [
{
values : visitorsData,
scale : ['#92c1dc', '#ebf4f9'],
normalizeFunction: 'polynomial'
}
]
},
onRegionLabelShow: function (e, el, code) {
if (typeof visitorsData[code] != 'undefined')
el.html(el.html() + ': ' + visitorsData[code] + ' new visitors');
}
});
});
你有沒有嘗試添加'showTooltip:真,'也許這將幫助http://jsfiddle.net/hsh85/gbvt314a/2/ –
showTooltip:真正的,沒有幫助 –
那麼請讓問題 –