score:9

Accepted answer

you can put custom data in series and then use in tooltip

data: [{
            name: "Firefox",
            y: 10,
    custom:"5% "
        }, {
            name: "Chrome",
            y: 12,
     custom:"10% "
        }, {
            name: "Explorer",
            y: 65,
     custom:"15%"
        }, {
            name: "Opera",
            y: 13,
     custom:"25% "
        }]

Use in tooltip

  tooltip: {
        pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b> <br>of which woman users {point.custom}'
    }

See updated fiddle here

score:0

can try like this

tooltip: { headerFormat: '{series.name}: {point.y}',

      pointFormat: '{series.name}: <b><br/>Totalamount: {point.amount}'

    },

score:1

You can also use tooltip.formatter and extract values from this.point.options.custom (where custom if name of field like in examples above)

http://api.highcharts.com/highcharts#tooltip.formatter


Related Query

More Query from same tag