柱状图柱体标签显示问题

描述:当前是关于Echarts图表中的 柱状图 示例。
 
            var x = [1,3,2,4,6,5];

option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri']
    },
    legend: {
        formatter: '{name}',
        data:['温度','湿度','超声']
    },
    yAxis: {},
    series: [{
        name: '温度',
        type: 'bar',
        label: {
            show: true,
            formatter: function(e){
                return '温度'+x[e.dataIndex];
            }
        },
        data: [5, 20, 36, 10, 10, 20]
    },{
        name: '湿度',
        type: 'bar',
        data: [5, 20, 36, 10, 10, 20]
    },{
        name: '超声',
        type: 'bar',
        data: [5, 20, 36]
    }]
};