传奇的错误位置在highmaps中滴答作响

时间:2016-11-01 15:35:19

标签: highcharts highmaps

我的代码中某处出了问题,我无法弄清楚在哪里看。我创建世界地图,我想有传说栏,但颜色条和刻度的外观在不同的地方。它看起来像这样: image

我创建世界地图的代码是:

            $('#graph_container').highcharts('Map', {
            chart: {
                height: $(window).height() / graph_height,
            },
            xAxis: {
                labels: {
                    enabled: false
                }
            },
            colorAxis: {
                type: 'linear',
                minColor: colorLuminance(colorMaps[selectedModel], 0.5),
                maxColor: colorLuminance(colorMaps[selectedModel], -0.5),
            },
            title: {
                text: 'World Map'
            },
            mapNavigation: {
                enabled: true,
            },
            subtitle: {
                text: ''
            },
            tooltip: {
                formatter: function () {
                    return 'Country: ' + this.point.name + '<br>' +
                            'Value: ' + this.point.value.toExponential(2);
                }
            },
            series: [{
                data: [],
                name: 'Country',
                mapData: Highcharts.maps['custom/world'],
                joinBy: ['iso-a3', 'code'],
                nullColor: 'grey'
            }
            ]
        });

我应该在哪里看?有没有我可以覆盖的CSS?

0 个答案:

没有答案