score:14

in this case you can replace "this.percentage" to "this.point.y"

look at formatter: (old link removed), new link - https://api.highcharts.com/highcharts/tooltip.formatter

score:26

return '<b>'+ this.point.name +'</b>: '+ this.y +' clicks';

score:50

fixed, just changed below line

  format: '<b>{point.name}</b>: {point.percentage:.1f} %',

to

  format: '<b>{point.name}</b>: {point.y:.1f} rs.',

Related Query

More Query from same tag