score:1

Accepted answer

again it's a simple modification of the highcharts attributes in particular this small snippet:

bar: {
        datalabels: {
           enabled: true,
           distance : -50,
           formatter: function() {
                 var dlabel = this.series.name + '<br/>';
                 dlabel += math.round(this.percentage*100)/100 + ' %';
                 return dlabel
           },
           style: {
                 color: 'white',
           },
        },

  },

i think this snippet is what you are after?


Related Query

More Query from same tag