tooltip.axisPointer.label 设置 lineHeight 无效echarts 折线配置项内容和展示

tooltip.axisPointer.label 设置 lineHeight 无效

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    tooltip: {
        trigger: 'axis',
        padding: 12,
        axisPointer: {
          type: 'cross',
          label: {
            lineHeight: 106
          }
        }
    },
    xAxis: {
        axisLabel: {
            lineHeight: 20,
        },
        data: ['2020-01-05\n2020-02-05', '2020-01-06\n2020-02-06', '2020-01-07\n2020-02-07']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[220, 182, 191]
    }]
};
    
截图如下