I am able to display the legend and legend title in angular2-highcharts. I am planning to display the total count below the legend title ( here below city), but couldn't able to find out how. Also I am not sure why % is displayed along with the value in the legend values.
My label formatter is:
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-2" >' + this.value +
'%</span></div> ';
}