bar datalabel issues

HTML

<div id="container" style="height: 400px"></div>
<script src="http://code.highcharts.com/highcharts.js"></script>

JavaScript

$(function() {
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
             type: 'column',
            inverted:true
           //type: 'bar'
       },
        xAxis: {
            categories: ['First', 'Second']
        },
        yAxis: {},

        plotOptions: {
            series: {
                dataLabels: {
                       enabled: true, 
                    align:'right',                    
                      style: {
                      color: 'black'
                },
                    
                }
            }
        },
        series: [{
            data: [29.9, 71.5]}]
    });
});