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

More Query from same tag