1.
echarts版本
areaColor:3.0
color:2.0
option = {
tooltip: {
trigger: 'item',
formatter: '{b}'
},
series: [
{
name: '中国',
type: 'map',
mapType: 'china',
selectedMode : 'multiple',
itemStyle: {
normal: {//未选中状态
borderWidth:2,//边框大小
borderColor:'lightgreen',
areaColor: 'orange',//背景颜色
label: {
show: true//显示名称
}
},
emphasis: {// 也是选中样式
borderWidth:2,
borderColor:'#fff',
areaColor: 'red',
label: {
show: true,
textStyle: {
color: '#fff'
}
}
}
},
data:[
// {name:'广东', selected:true}
{
name:'广东',
itemStyle: {
normal: {
color: 'red',
label: {
show: true,
textStyle: {
color: '#fff',
fontSize: 15
}
}
},
emphasis: {// 也是选中样式
borderWidth:5,
borderColor:'yellow',
areaColor: '#cd5c5c',
label: {
show: true,
textStyle: {
color: 'blue'
}
}
}
},
}
]
}
]
};
1.效果图