如何将这条折线图闭合echarts 折线配置项内容和展示

折线图的右边数据,小于7, 能否将右边数据换到7的左边,即x轴范围为1-7,而不是1-7-1.1;在不改数据的情况下

配置项如下
      option = {
       legend: {},
        tooltip: {
          trigger: 'axis',
          showContent: true
        },  
        xAxis: {
            type: 'category',
            name: '输出端扭矩(Nm)',
        },
        yAxis: {
            type: 'value',
            name: '输出端角度(°)',
        },
        series: [
          {
            // data: this.state.allData,
            data: [
              [1,-3],
              [2, -2],
              [3, -1],
              [4, 0],
              [5, 1],
              [6, 2],
              [7, 3],
              // [7, 2.8],
              [6.1, 1.8],
              [5.2, 0.9],
              [4.3, -0.8],
              [3.2, -1.2],
              [2.1,-2.2],
              [1.1, -3]
            ],
            type: 'line',
            smooth: true,
          }
      ]
};
    
截图如下