在折线图中,默认显示平行于X轴的线叫刻度线,在yAxis中的splitLine中进行设置
调整刻度线代码示例:
echarts--文档--API(进入页面选择配置项)--yAxis
splitLine:{
show:true,
lineStyle:{
color:'#eee',
width:1,
}
}
柱状图(bar),鼠标放置,显示tooltip之后需要显示每一项垂直于x轴的指示器
在x轴xAxis中配置
axisPointer: {
show: true,
type: 'shadow'
}