小编JIM*_*ODE的帖子

无法在同一页面上显示高地图和高图表?

    // Initiate the chart
    $('#container_origin').highcharts('Map', {
		
		
        title : {
            text : 'Heat Map Of Visited Orgins'
        },

        subtitle : {
            text : ''
        },
		

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

			colorAxis: {
                min: 1,
                type: 'logarithmic',
                minColor: '#338ACA',
                maxColor: '#1B4761'
            },
			
			

        series : [{
		
		
            data : data,
            mapData: Highcharts.maps['custom/world-highres'],
            joinBy: 'hc-key',
            //name: 'Random data',
            states: {
                hover: {
                    color: Highcharts.getOptions().colors[6]
                }
            },
			
            dataLabels: {
                enabled: true,
                format: '{point.name}'
            },
			tooltip: {
                headerFormat: '',
            }
			
			
			
        }]
    }); …
Run Code Online (Sandbox Code Playgroud)

charts highcharts

3
推荐指数
1
解决办法
2615
查看次数

标签 统计

charts ×1

highcharts ×1