Question

    tooltip: {
        headerFormat: '<b>{series.name}</b><br>',
        pointFormat: '{point.x:%b %e %H:%M}: {point.y:.3f}'
    },

How to add a new line between %e and %H?

Was it helpful?

Solution 2

You need to use tooltip formatter then you can customise content.

OTHER TIPS

set property useHTML to true and you'll be able to use <br/> for making a new line

tooltip: {
        useHTML: true,
        headerFormat: '<b>{series.name}</b><br>',
        pointFormat: '{point.x:%b %e <br/> %H:%M}: {point.y:.3f}'
    },
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top