Domanda

    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?

È stato utile?

Soluzione 2

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

Altri suggerimenti

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}'
    },
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top