echarts 修改legend字体颜色、x轴或y轴文本字体颜色改变
修改legend字体颜色:legend: {y:'55%',textStyle:{fontSize: 18,//字体大小color: '#ffffff'//字体颜色...
·
修改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'
}
}
}
]
更多推荐
已为社区贡献1条内容
所有评论(0)