Pergunta

    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?

Foi útil?

Solução 2

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

Outras dicas

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}'
    },
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top