在竞品平台活跃echarts 折线配置项内容和展示

配置项如下
      option = {
    title: {
    text: "在竞品平台活跃"
  },
    xAxis: {
        type: 'category',
        data: ['2021-6-1', '2021-6-1', '2021-6-1', '2021-6-1', '2021-6-1', '2021-6-1', '2021-6-1']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [820, 932, 901, 934, 1290, 1330, 1320],
        type: 'line',
        smooth: true,
        areaStyle: {}
    }]
};
    
截图如下