score:1

Accepted answer

You need to define tooltip options on the main level:

Highcharts.chart('container', {
    ...,
    tooltip: {
        headerFormat: '...',
        pointFormat: '...',
        backgroundColor: 'black',
    }
});

Live demo: http://jsfiddle.net/BlackLabel/6gxcanhs/

API Reference: https://api.highcharts.com/highcharts/tooltip


Related Query

More Query from same tag