启动时长echarts 柱状配置项内容和展示

配置项如下
      option = {
    xAxis: {
        type: 'category',
        data: ['优化前', '代码懒注入']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [284, 152],
        type: 'bar',
        showBackground: true,
        barWidth: 120,
        backgroundStyle: {
            color: 'rgba(180, 180, 180, 0.2)'
        }
    }]
};
    
截图如下