score:1

Accepted answer

This problem is a Highmaps regression bug: https://github.com/highcharts/highcharts/issues/16782

As a workaround, you can add an empty point on init:

  series: [{
    type: 'map',
    data: [{}],
    ...
  }, ...]

Live demo: https://jsfiddle.net/BlackLabel/edpbjvm1/

score:0

Is there a reason you are using mapbubble instead of map as your series.type?

If you change it to map, it works.

https://jsfiddle.net/vf8o7cnd/1/


Related Query