2

I would like implemented names of town (Trencin, Nemsova, Ilava... ) and their tooltips together. Click on green TN block in map and check it.

I try some solutions, but:

  1. tooltip overllaps names of towns:

     useHTML: true,    
    

http://jsfiddle.net/jezrael/grzwuL9g/5/ (line 47)

  1. three names of towns are missing:

     useHTML: false //(default),
    

http://jsfiddle.net/jezrael/grzwuL9g/4/ (line 47)

  1. give tooltip out of map, but impossible:

     positioner: function () {
         return { x: 0, y: 250 };
     },
    

http://jsfiddle.net/LyUxF/
http://jsfiddle.net/j92p2/ in chart
http://jsfiddle.net/jezrael/grzwuL9g/5/ (line 55)

  1. giving name of town with connectors out of map:
    http://www.highcharts.com/maps/demo/us-data-labels
    http://jsfiddle.net/highcharts/9Fk3a/5/
    I cant do it.
Sunderam Dubey
  • 1
  • 11
  • 20
  • 40
jezrael
  • 822,522
  • 95
  • 1,334
  • 1,252

1 Answers1

4

Solution is:

Highcharts.seriesTypes.map.prototype.hideOverlappingDataLabels = function() {};

jsfiddle

jezrael
  • 822,522
  • 95
  • 1,334
  • 1,252