I have a highchart- pie chart and I customized the labels as below. But I couldn't able to find how to move the value to right side(right intended). also the lines at the bottom of each legend to cover the legend icon also.
https://plnkr.co/edit/yzXLz7AIDoWa1Pzxxl4k?p=preview
My legend code
labelFormatter: function () {
return '<div class="legend-label-md row" style=" border-bottom:1px solid black; margin-bottom: 5px"><span class="col-md-10">' + this.name +
'</span><span class="col-md-1" >' + this.value +
'%</span></div> ';
}