我猜是这个效果
```javascript
option = {
tooltip:{
show: true,
trigger: 'axis',
axisPointer:{
type: 'cross',
axis: 'y',
crossStyle:{
type: 'solid'
}
}
},
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line'
}]
};``` [ Full content available at: https://github.com/apache/incubator-echarts/issues/5546 ] This message was relayed via gitbox.apache.org for [email protected]
