echarts 修改legend字体颜色、x轴或y轴文本字体颜色改变
作者:互联网
- 修改legend字体颜色:
legend: {
y:'55%',
textStyle:{
fontSize: 18,//字体大小
color: '#ffffff'//字体颜色
},
data: []
}
- 修改x轴字体颜色:
xAxis : [
{
type : 'category',
data : [],
axisLabel: {
show: true,
textStyle: {
color: '#ffffff'
}
}
}
]
- 修改y轴字体颜色:
yAxis : [
{
type : 'value',
name : '',
axisLabel : {
textStyle: {
color: '#ffffff'
}
}
}
标签:textStyle,颜色,color,字体,ffffff,legend 来源: https://www.cnblogs.com/pansidong/p/16252150.html