F2echarts 柱状配置项内容和展示

配置项如下
      var data1 = ['0.4-1万/月', '0.5-1.2万/月', '0.5-1万/月', '0.6-1.2万/月', '0.6-1.4万/月', '0.6-1万/月', '0.7-1.2万/月', '0.7-1.4万/月', '0.7-1.5万/月', '0.7-3万/月', '0.8-1.2万/月', '0.8-1.3万/月', '0.8-1.4万/月', '0.8-1.5万/月', '0.8-1.6万/月', '0.8-1.8万/月', '0.8-1万/月', '0.8-2.5万/月', '0.8-2万/月', '0.9-1.3万/月', '0.9-1万/月', '0.9-2万/月', '1-1.4万/月', '1-1.5万/年', '1-1.5万/月', '1-1.8万/月', '1-2.5万/月', '1-2万/月', '1.1-1.7万/月', '1.1-1.8万/月', '1.2-1.6万/月', '1.3-1.8万/月', '1.5-1.8万/月', '1.5-2.5万/月', '1.5-2万/月', '1.5-2千/月', '1.5-3万/月', '10-15万/年', '2-2.5万/月', '2-4万/月', '2.5-3.5万/月', '20-30万/年', '20-40万/年', '3-3.5千/月', '3-4.5千/月', '3-5万/月', '3.7-5.8千/月', '3.8-7.5千/月', '3.8-7.8千/月', '3.9-7.6千/月', '4-6千/月', '4-7千/月', '4-8千/月', '4.5-6.5千/月', '4.5-6千/月', '5-7千/月', '5-8千/月', '6-13万/年', '6-8千/月', '6-9千/月'];
var data2 = ['2', '2', '10', '7', '1', '4', '2', '7', '3', '2', '6', '2', '1', '20', '5', '1', '15', '1', '3', '1', '1', '1', '2', '1', '31', '4', '1', '26', '1', '1', '2', '1', '1', '3', '5', '2', '3', '1', '5', '1', '2', '2', '2', '1', '6', '2', '1', '2', '2', '3', '1', '2', '11', '1', '20', '3', '5', '1', '24', '2']

option = {
    title: {
        text: '薪资分布',
    },
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'shadow'
        }
    },
    
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    xAxis: {
        type: 'value',
        boundaryGap: [0, 0.01]
    },
    yAxis: {
        type: 'category',
        data: data1
    },
    series: [
        {
            type: 'bar',
            data: data2
        },
    ]
};

    
截图如下