score:4

Accepted answer

you can iterate on each elemetn, and use translate function, which allows to "move" svg elements.

var bottom = chart.plotheight - 20;

    $.each(chart.series[0].data,function(i,data){

        data.datalabel.attr({
            y: bottom
        });
    });

take look at the simple example:

http://jsfiddle.net/wmlg6/39/

score:2

i think code below helps you. stacking is the trick. change y value according to your chart.

plotoptions:{

    column:{
        stacking:'normal',
    datalabels:{
        enabled:true,
        verticalalign:'bottom',
        y:40
    }
    },
},

Related Query

More Query from same tag