1.由于代码是复制过来的,然后我想给我的 x轴,的 ‘轴’ 设置颜色,通过 xAxis 的 axisLine实现了这个效果 但是设置的的提示也跟着变色了(这个提示是因为我在 tooltip 中设置了 type: 'cross' ,默认自带)
xAxis: [
{
type: 'category',
data: ['10月', '10月', '12月', '1月'],
axisPointer: {
type: 'shadow'
},
axisLabel: {
show: true,
textStyle: {
color: '#fff'
}
},
axisLine: {//x坐标轴轴线
show: true,
lineStyle: {//x坐标轴轴线样式
color: '#fff',//'#ccc' | 'rgb(128, 128, 128)' | 'rgba(128, 128, 128, 0.5)',设置标签颜色
}
}
}
],
2.后来查了一下 Echarts 的 配置项
3.可以在 tooltip 中 统一设置一下 axisPointer 属性,就可以了
tooltip: {
transitionDuration: 0,
trigger: 'axis',
axisPointer: {
type: 'cross',
crossStyle: {
color: '#999',
},
label: {
color: '#fff',
backgroundColor : '#333'
}
}
},
记录一下