陆东旭睡眠时间echarts 柱状配置项内容和展示

老子睡到死

配置项如下
      option = {
    title: {
        text: '杭州保姆纵火案',
        subtext: '数据来自300条评论'
    },
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'shadow'
        }
    },
    legend: {
       
    },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    xAxis: {
        type: 'value',
        boundaryGap: [0, 1]
    },
    yAxis: {
        type: 'category',
        data: ['聚焦杭州绿城小区纵火事件','分析保姆纵火的犯罪动机','关注绿城物业管理乱象','检察院依法批捕犯罪嫌疑人','专家建议整治规范家政行业','其他新闻']
    },
    series: [
        {
           
        
            type: 'bar',
            data: [32, 26, 17, 11, 10, 4]
        }
    ]
};
    
截图如下