多柱状图

描述:当前是关于Echarts图表中的 柱状图 示例。
 
            option = {
   //你的代码
   backgroundColor:'#000000',

    tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } },
        legend: { textStyle: { color: '#ffffff', fontSize: 16 } },
        grid: { left: '3%', right: '5%', bottom: '5%', containLabel: true },
        xAxis: { type: 'category', data: ['2022.06', '2022.07', '2022.08', '2022.09', '2022.10', '2022.11', '2022.12'] },
        yAxis: { name: '评论条数', type: 'value', splitLine: {show:false }, },
        textStyle: { color: '#ffffff' }, series: [
          { data: ['95', '64', '101', '76', '122', '115', '50'], name: '好评', type: 'bar', barWidth: 12, itemStyle: { color: "#00BAAD", }, },
          { data: ['16', '9', '19', '8', '22', '17', '9'], name: '中评', type: 'bar', barWidth: 12, itemStyle: { color: "#229BF7", }, },
          { data: ['3', '4', '1', '2', '4', '3', '5'], name: '差评', type: 'bar', barWidth: 12, itemStyle: { color: "#6B68F7", }, },
        ]
};