highcharts 地图将图像添加到工具提示
highcharts map add image to tooltip
当鼠标悬停在气泡上时,我无法将图像添加到 Highmap 气泡工具提示。任何人都知道如何解决它?
非常感谢
这是一个例子link。在第 24 行添加的图像:http://jsfiddle.net/1jm2yxbq/
tooltip: {
formatter: function () {
return '<img src="http://www.w3schools.com/tags/smiley.gif" width="42" height="42">';
}},
您只需要将 useHTML
属性 设置为 true
:
tooltip: {
useHTML: true,
formatter: function () {
return '<img src="http://www.w3schools.com/tags/smiley.gif" width="42" height="42">';
}
},
我在 fiddle 上测试了它,它工作正常:http://jsfiddle.net/1jm2yxbq/1/
当鼠标悬停在气泡上时,我无法将图像添加到 Highmap 气泡工具提示。任何人都知道如何解决它?
非常感谢
这是一个例子link。在第 24 行添加的图像:http://jsfiddle.net/1jm2yxbq/
tooltip: {
formatter: function () {
return '<img src="http://www.w3schools.com/tags/smiley.gif" width="42" height="42">';
}},
您只需要将 useHTML
属性 设置为 true
:
tooltip: {
useHTML: true,
formatter: function () {
return '<img src="http://www.w3schools.com/tags/smiley.gif" width="42" height="42">';
}
},
我在 fiddle 上测试了它,它工作正常:http://jsfiddle.net/1jm2yxbq/1/