在竞品平台活跃

描述:当前是关于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: {}
    }]
};