美文网首页
echarts柱状图柱显示值

echarts柱状图柱显示值

作者: 前端金城武 | 来源:发表于2021-03-09 15:01 被阅读0次

原代码默认不显示值

series: [{
    name: '平均等待时长',
    type: 'bar',
    barWidth: 15,
    barGap: '0',
    barCategoryGap: '0',
    data: [],
        color: '#0c7dfe',
    
}]

柱显示值

                    series: [{
                            name: '平均等待时长',
                            type: 'bar',
                            barWidth: 15,
                            barGap: '0',
                            barCategoryGap: '0',
                            data: [],
                            color: '#0c7dfe',
                            itemStyle: {
                                normal: {
                                    label: {
                                                                 //是否显示
                                        show: true,
                                                                //值位置
                                        position: 'top',
                                                                //字体颜色
                                        color: '#FFFFFF',
                                                                //当值是0时不显示
                                        formatter: function(params) {
                                            if (params.value > 0) {
                                                return params.value;
                                             } else {
                                                return ' ';
                                             }
                                        },
                                    }
                                }
                            },
                        }]

相关文章

网友评论

      本文标题:echarts柱状图柱显示值

      本文链接:https://www.haomeiwen.com/subject/ulqbqltx.html