echarts设置y轴 自定义颜色
程序员文章站
2022-06-01 08:43:37
...
根据业务需求,特殊标记点设置特殊提示
在color:function()中进行判断,同理如果显示label自定义在formatter中进行
yAxis:{
{
type: 'value',
name: '温度',
min: 0,
max: 25,
position: 'left',
axisLine: {
lineStyle: {
color: '#675bba'
}
},
axisLabel: {
formatter: '{value} °C',
color:function(v){
if(v==20){
return '#e61717'
}else{
return '#675bba'
}
}
}
}
}
上一篇: Mysql提权前奏