echars顶部显示数据,并且格式化为百分比

echars顶部显示数据,并且格式化为百分比_第1张图片
柱子数据设置:

series: [
        {
            name: '直接访问',
            type: 'bar',
            barWidth: '60%', //柱子宽度,有些设置为百分比,不能显示。把 % 号 去掉就可以了
            itemStyle:{
                normal:{
                    label:{
                        show:true,
                        position:'top',   //文字位置
                        textStyle:{
                            color:'red' //文件颜色
                        },
                        formatter: '{a}\n{b}\n{c}%'    //这是关键,格式化百分比显示
                    }
                }
            },
            
            data: [10, 52, 200, 334, 390, 330, 220]
           
        }
    ]

Y轴百分比显示:

yAxis: [
    {  
         type: 'value',  
         axisLabel: {  
             show: true,  
             interval: 'auto',  
             formatter: '{value} %'  
             },  
         show: true  
     }  
 ],

你可能感兴趣的:(echars顶部显示数据,并且格式化为百分比)