在移动设备(触摸屏)上放大后,高位图数据点击事件中断

时间:2018-03-14 06:17:18

标签: jquery css html5 highmaps

在移动设备(触摸屏)上放大后,Highmap数据点击事件中断 有什么建议吗? enter image description here

1 个答案:

答案 0 :(得分:2)

tooltip.pointFormatter与useHTML一起仍然期望一个字符串作为返回值,因此主要应该用于CSS / HTML格式化。 我建议您使用自己的HTML工具提示来获得更高级的内容,例如按钮:

 Highcharts.wrap(Highcharts.Point.prototype, 'select', function (proceed) {
    proceed.apply(this, Array.prototype.slice.call(arguments, 1));
    var points = mapChart.getSelectedPoints();
    $('tooltip-button-close').click(function () {
        points[0].select(false);
    }
   });

演示:https://www.highcharts.com/maps/demo/rich-info