Highcharts工具提示未正确显示utf-8

Highcharts工具提示未正确显示utf-8,highcharts,utf-8,Highcharts,Utf 8,我绘制了一张欧洲地区的地图: 这是我的工具提示: tooltip: { useHTML: true, outside: false, formatter: function() { return '<span>' + this.point.country + '<br>' + this.point.land + '<br>' + this.point.name + '<br>' + this.point.id + '&

我绘制了一张欧洲地区的地图:

这是我的工具提示:

  tooltip: {
useHTML: true,
outside: false,
formatter: function() {

            return '<span>' + this.point.country + '<br>' + this.point.land + '<br>' + this.point.name + '<br>' + this.point.id + '<br>' + this.point.nuts + '<br>' + this.point.level + '<br>' + this.point.datum + '</span>';


                      }
        },
不幸的是,工具提示没有正确显示utf-8字符。我能做什么?
我发现了这个问题。工具提示从geojson的元数据中获取名称列。重命名数据列解决了这个问题。

但是Türkei/Türkiye或Grönland显示正确……我发现了问题。工具提示从geojson的元数据中获取名称列。重命名数据列解决了此问题。@JohannesChrist请将此答案写在您的答案字段中。