Thanks.

I think `tooltip.trigger: 'axis'` make similar experience like highcharts does:

```js
option = {
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'none'
        }
    },
    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/9000 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to