echarts柱状图之踩坑label show为true不显示数据

 正常官网上的代码实现的效果

option = {
  tooltip: {
    trigger: 'axis',
    axisPointer: {
      // Use axis to trigger tooltip
      type: 'shadow' // 'shadow' as default; can also be 'line' or 'shadow'
    }
  },
  legend: {},
  grid: {
    left: '3%',
    right: '4%',
    bottom: '3%',
    containLabel: true
  },
  xAxis: {
    type: 'value'
  },
  yAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', ]
  },
  series: [
    {
      name: 'Direct',
      type: 'bar',
      stack: 'total',
      label: {
        show: true
      },
      emphasis: {
        focus: 'series'
      },
      data: [320,0,0,0]
    },
    {
      name: 'Mail Ad',
      type: 'bar',
      stack: 'total',
      label: {
        show: true,
      },
      emphasis: {
        focus: 'series'
      },
      data: [0,120,0,0]
    },
    {
      name: 'Affiliate Ad',
      type: 'bar',
      stack: 'total',
      label: {
        show: true
      },
      emphasis: {
        focus: 'series'
      },
      data: [0,0,191,0]
    },
    
  ]
};

找过很多方法都显示不了(我觉得是版本的原因,有大佬知道什么原因可以留言,非常感谢!) 

最后series修改成这样能实现

 series:[

     {

name: item.value,
type: 'bar',
stack: 'total',
barWidth : '50%',//柱图宽度
itemStyle:{
    normal:{
        label: {
            show : true,
            position : 'inside',
            formatter : function (params) {
                if(params.value < 0){  //为0时不显示
                    return ''
                }else{
                    return params.value
                }
            },
            textStyle : {
                color: '#fff'
            }
        }
    },
},
emphasis: {
    focus: 'series'
},
data: arr

    }

]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值