Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Highcharts graph to display a pie chart. I want to change the tooltip to display the actual data field along with the series name in place of the percentage value.

Here is the sample at jsFiddle

If you check the above sample you will find 2 things

  1. Tooltip is : pointFormat: '{series.name}: {point.percentage}%' i.e.

    Browser share: some-percentage-value

I want to show:

Browser share: 40 (data value instead of percentage)

2. Next is the the display text for each section in the pie. One can see n number of decimals making the graph look very ugly.

I want to show numbers only upto 2 decimal points like percentageDecimals: 1 used in tooltip.

I tried few things for 1st like series.data which returns an array of objects. Also series.data[0]. But no success so far

How can I do both these things?

share|improve this question

1 Answer

up vote 5 down vote accepted

You can change it so it shows the data value instead by modifying your tooltip pointFormat from pointFormat: '{series.name}: <b>{point.percentage}%</b>', to pointFormat: '{series.name}: <b>{point.y}%</b>',

You can round the numbers by using the Highcharts.numberFormat() function like so in your formatter:

formatter: function() {
    return '<b>'+ this.point.name +'</b>: '+ Highcharts.numberFormat(this.percentage, 2) +' %';
}
share|improve this answer
This is correct and it works but this is not the exact answer am looking for. Your answer changes the labels instead of the tooltip. Although I an solve my first doubt by using point.y in the tooltip to get the data. But the 2nd questions is still unanswered. – DarkKnightFan Sep 27 '12 at 19:57
Sorry I reread the question and updated my answer, please check again – Suhail Patel Sep 27 '12 at 19:58
excellent! Thats what I was looking for. Thanks for your help. – DarkKnightFan Sep 27 '12 at 19:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.