Echars简单地图制作

来源:互联网 发布:服装数据分析软件 编辑:程序博客网 时间:2024/05/22 03:08

Echars简单地图制作

外部链接:

  • Echars地址: http://echarts.baidu.com/download.html
  • 地图地址: http://echarts.baidu.com/download-map.html

代码如下:

var myChart = echarts.init(document.getElementById('china-map'));    var option = {        tooltip: {                    show: false, //不显示提示标签            formatter: '{b}', //提示标签格式            backgroundColor:"green",//提示标签背景颜色            textStyle:{color:"#fff"} //提示标签字体颜色        },        series: [{            type: 'map',            mapType: 'china',            label: {                normal: {                    show: true,//显示省份标签                    textStyle:{color:"#333"}//省份标签字体颜色                },                emphasis: {//对应的鼠标悬浮效果                    show: false,                    textStyle:{color:"#41b351"}                }            },            itemStyle: {                normal: {                    borderWidth: .5,//区域边框宽度                    borderColor: '#009fe8',//区域边框颜色                    areaColor:"#41b351",//区域颜色                },                emphasis: {                    borderWidth: .5,                    borderColor: '#4b0082',                    areaColor:"#41b351",                }            }        }],    };    myChart.setOption(option);    myChart.on('mouseover', function (params) {        var dataIndex = params.dataIndex;        console.log(params);    });
原创粉丝点击