option 
= {
    title
: {
        text
: 'Echarts 固定Y轴刻度标签宽度',
    },
    tooltip
: {
        trigger
: 'axis',
        axisPointer
: {
            type
: 'shadow'
        }
    },
    legend
: {
        data
: ['刻度标签']
    },
    grid
: {
        left
: '100',            
        right
: '4%',
        bottom
: '3%',
        containLabel
: true
    },
    xAxis
: {
        type
: 'value',
        boundaryGap
: [0, 0.01]
    },
    yAxis
: {
        type
: 'category',
        data
: ['巴西', '印尼', '美国', '印度', '中国', '世界人口(万)'],
        axisLabel
:{
            inside
:true,        
            margin
:0,           
            padding
:[0,10,0,0], 
            textStyle
:{
                align
:'right'   
            }
        }
    },
    series
: [
        {
            name
: '刻度标签',
            type
: 'bar',
            data
: [18203, 23489, 29034, 104970, 131744, 630230]
        },
      
    ]
};
 
                
                
                
        
    
                    转载请注明原文地址: https://lol.8miu.com/read-25891.html