echart bar label不显示问题

series: [{
                name: "Food",
                type: "bar",
                data: [320, 302, 301, 334, 390, 330, 320],
                barWidth: 10,

                itemStyle:{
                normal:{
                    label: {
                        show : true,
                        position : 'top',
                        formatter : "{c}",
                        textStyle : {
                            color: '#eab62a'
                        }
                    }
                },
            }
            }, {
                name: "Cloth",
                type: "bar",
                data: [150, 212, 201, 154, 190, 330, 410],
                barWidth: 10,
                itemStyle:{
                normal:{
                    label: {
                        show : true,
                        position : 'top',
                        formatter : "{c}",
                        textStyle : {
                            color: '#eab62a'
                        }
                    }
                },
            }
            }, {
                name: "Book",
                type: "bar",
                data: [820, 832, 901, 934, 1290, 1330, 1320],
                barWidth: 10,
                itemStyle:{
                normal:{
                    label: {
                        show : true,
                        position : 'top',
                        formatter : "{c}",
                        textStyle : {
                            color: '#eab62a'
                        }
                    }
                },
            }
            }]
        };
原文地址:https://www.cnblogs.com/ThisYbc/p/15135910.html