订单统计-订单走势echarts 折线配置项内容和展示

配置项如下
        option = {
      tooltip: {
          trigger: 'axis',
      },
      legend: {
          data: ['总订单(笔)', '实际订单(笔)', '退货订单(笔)']
      },
      grid: {
          left: '4%',
          right: '4%',
          bottom: '3%',
          containLabel: true
      },
      xAxis: {
          type: 'category',
          boundaryGap: false,
          data: ['12月01', '12月02', '12月03', '12月04', '12月05', '12月06', '12月07', '12月08', '12月09', '12月10', '12月11', '12月12']
      },
      yAxis: [{
          type: 'value',
          scale: true,
          name: '订单量(笔)',
          max: 3000,
          min: 0,
          boundaryGap: [0.2, 0.2]
      }],
      series: [{
              name: '总订单(笔)',
              type: 'line',
              areaStyle: {}, //堆叠图形
              data: [1120, 1132, 1101, 1134, 1980, 2310, 2110, 2111, 1314, 1910, 2301, 2150]
          },
          {
              name: '实际订单(笔)',
              type: 'line',
              areaStyle: {}, //堆叠图形
              data: [1000, 932, 901, 1034, 1900, 2210, 1910, 1811, 1214, 1710, 2201, 1953]
          },
          {
              name: '退货订单(笔)',
              type: 'line',
              areaStyle: {}, //堆叠图形
              data: [120, 200, 200, 100, 80, 93, 100, 200, 300, 100, 200, 200]
          },
      ]
  };



  myChart.setOption(option);

  function randomData() {
      return Math.round(Math.random() * 1000);
  }
    
截图如下