I know that pie and bar chart has functionality to show tooltip with percentage, but I have column chart.
Is there any way to implement tooltip with percentage in column chart?
Asked
Active
Viewed 1,154 times
0

Andrii Furmanets
- 1,081
- 2
- 12
- 29
-
In the stacked column ? If not, you need to calculate this on your own in tooltip formatter. – Sebastian Bochan Feb 28 '14 at 13:47
-
@Sebastian Bochan, no there isn't stacked column. Could you please provide me with some examples with tooltip formatter? – Andrii Furmanets Feb 28 '14 at 13:51
-
you need to divide current point valye by sum all points from series. – Sebastian Bochan Feb 28 '14 at 14:13
-
2See my answer here: http://stackoverflow.com/questions/16837209/highcharts-percentage-of-total-for-simple-bar-chart/16838167#16838167 To apply this to the tooltip, simply copy the contents of the formatter function from the dataLabel object to the tooltip object. – jlbriggs Feb 28 '14 at 14:37