Echarts 改变地图文字颜色大小,以及鼠标经过颜色

series: [
							// 定义地图类型,数据
							{
								name: "china",
								type: "map",
								mapType: "china",
								data: provinces,
								itemStyle: {
									normal: {
										borderWidth: 1, //边际线大小
										borderColor: '#00ffff', //边界线颜色
										areaColor: '#09295b' //默认区域颜色
									},
									emphasis: {
										show: true,
										areaColor: '#3066ba', //鼠标滑过区域颜色
										label: {
											show: true,
											textStyle: {
												color: '#fff'//鼠标经过字体颜色
											}
										}
									}
								},
								label: {
									normal: {
										show: true,
										textStyle: {
											fontSize: 12,//字体大小
											fontWeight: 'bold',
											color: 'red'//字体颜色
										}
									},
									emphasis: {
										show: true
									},
								}
							},

						]

Echarts 改变地图文字颜色大小,以及鼠标经过颜色

上一篇:IOS开发-CALayer和UIView详细汇总


下一篇:网络问卷调查js实现代码