vue v-charts 地图
地图html 代码<ve-map :data="chartData0" :settings="chartSettings22" height='300px' width='360px' style='margin:0px auto;' :grid="grid" :legend-visible='false'></ve-map>data() {thi...
·
地图
- html 代码
<ve-map :data="chartData0" :settings="chartSettings22" height='300px' width='360px' style='margin:0px auto;' :grid="grid" :legend-visible='false'></ve-map>
data() {
this.chartSettings22 = {
position: 'province/henan', //位置 默认china 填写省市 要带province
labelMap: {
'people': '人口' //修改指标名称
},
itemStyle: {
normal: { //不选中样式
borderColor: '#fff',
areaColor: "#E6EFFF", //背景颜色
},
emphasis:{ //选中样式
areaColor: "#6A9FFF",
}
},
label: { //文本设置
show: true,
fontSize: 8,
fontWeight:300,
color:'#9498AC'
},
},
return {
chartData0: {
columns: ['位置', 'people'],
rows: [
{ '位置': '南阳市', 'people': 123 },
{ '位置': '洛阳市', 'people': 1223 },
{ '位置': '周口市', 'people': 2123 },
{ '位置': '商丘市', 'people': 4123 },
{ '位置': '信阳市', 'people': 8123 },
{ '位置': '三门峡市', 'people': 8123 }
]
},
}
}
更多推荐
已为社区贡献9条内容
所有评论(0)