怎样将十字标示线交叉点吸附到曲线上echarts 折线配置项内容和展示

如何将标示线直接吸附到曲线上?

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
        axisPointer:{
            show:true,
            snap:true,
            lineStyle:{
                type:'dashed'
            }
        }
    },
    yAxis: {
        axisPointer:{
            show:true,
            snap:true,
            lineStyle:{
                type:'dashed'
            }
        }
    },
    series: [{
        type: 'line',
        data:[220, 182, 191, 234, 290, 330, 310]
    }],
    tooltip:{
        trigger:"axis"
    }
};
    
截图如下