HighCharts和Map Bubble不兼容

HighCharts和Map Bubble不兼容,highcharts,Highcharts,我正在尝试使用Highmaps作为Highcharts源文件(Highcharts.js和map.js文件)的集成插件,如入门文档页面-->部分“加载所需文件”中所述 对于系列类型,贴图气泡在页面上没有显示任何内容。请参阅jsFiddle: })) 提前谢谢你 以后,我建议您使用console(开发人员工具),然后您会注意到highcharts返回您,这意味着缺少highcharts more.js 工作示例:对于将来,我建议使用console(开发人员工具),然后您会注意到highchart

我正在尝试使用Highmaps作为Highcharts源文件(Highcharts.js和map.js文件)的集成插件,如入门文档页面-->部分“加载所需文件”中所述

对于系列类型,贴图气泡在页面上没有显示任何内容。
请参阅jsFiddle:

}))


提前谢谢你

以后,我建议您使用console(开发人员工具),然后您会注意到highcharts返回您,这意味着缺少
highcharts more.js


工作示例:

对于将来,我建议使用console(开发人员工具),然后您会注意到highcharts返回您,这意味着缺少
highcharts more.js


工作示例:

谢谢!我已经查看了该错误,但我没有阅读邮件的结尾。您需要单击它,然后您将重定向到包含描述的页面。谢谢!我已经查看了该错误,但我没有阅读邮件的结尾。您需要单击它,然后您将重定向到包含描述的页面。
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/maps/modules/map.js"></script>
<script src="http://code.highcharts.com/maps/modules/data.js"></script>
<script src="http://www.highcharts.com/samples/data/maps/us.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
$(function () {

$.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=world-population.json&callback=?', function (data) {

    $('#container').highcharts('Map', {
        chart : {
            borderWidth : 1
        },

        title: {
            text: 'World population 2010 by country'
        },

        subtitle : {
            text : 'Demo of Highcharts map with bubbles'
        },

        legend: {
            enabled: false
        },

        mapNavigation: {
            enabled: true,
            buttonOptions: {
                verticalAlign: 'bottom'
            }
        },

        series : [{
            name: 'Countries',
            mapData: Highcharts.maps.world,
            color: '#E0E0E0',
            enableMouseTracking: false
        }, {
            type: 'mapbubble',
            mapData: Highcharts.maps.world,
            name: 'Population 2010',
            joinBy: 'code',
            data: data,
            minSize: 4,
            maxSize: '12%',
            tooltip: {
                pointFormat: '{point.code}: {point.z} thousands'
            }
        }]
    });

});