象形柱图,最大值便签不会随数值改变

描述:当前是关于Echarts图表中的 象形柱图 示例。
 
            
option = {
    xAxis: {
        data: ["A","B"]
    },
    yAxis: {},
    series: [{
        name: '销量',
        type: 'pictorialBar',
        symbol: 'circle',
        symbolRepeat:true,
        symbolClip: true,
        data: [5, 40],
        label:{
            normal:{
                show:true,
                position:'Top'
            }
        }
    }]
};