交叉显示x轴echarts 折线配置项内容和展示

交叉显示x轴,不知道有什么用,希望大佬开发,可以每一个点都有提示

配置项如下
      option = {
    tooltip: {
        trigger: 'axis',
    },
    xAxis: [
        {
            type: 'category',
            data: ['2', '4', '6', '8', '10', '12', '14'],
            position: 'bottom',
            // axisLabel: {
            //   padding: [0, 0, 0, -120]    // 四个数字分别为上右下左与原位置距离
            // }
        },
        {
            type: 'category',
            data: ['1', '3', '5', '7', '9', '11', '13'],
            position: 'bottom',
            axisLabel: {
                padding: [0, 0, 0, -120], // 四个数字分别为上右下左与原位置距离
            },
        },
    ],
    yAxis: {
        type: 'value',
    },
    series: [
        {
            data: [150, , 224, 218, 135, 147, 260],
            type: 'line',
            connectNulls: true,
        },
        {
            data: [110, , 120, 318, 165, 177, 160],
            type: 'line',
            connectNulls: true,
        },
    ],
};

    
截图如下