Soy nuevo con Highcharts y tengo una pregunta. Necesito mostrar todas las fechas en el eje x, pero de forma predeterminada, supongo que solo se muestran las fechas pares. ¿Cómo puedo mostrar todas las fechas? 
Aquí mi código:
const options: Options = { chart: { type: 'column', }, title: { text: '', }, xAxis: { crosshair: false, type: 'datetime', title: { text: 'Days', }, labels: { format: LABEL_FORMAT[period], rotation: 90, align: 'left', }, }, legend: { enabled: true, }, credits: { enabled: false, }, yAxis: { title: { text: 'Values', }, }, series: [ { name: 'test', type: 'column', data: [ [1651363200000, 10], [1651449600000, 15], [1651536000000, 5], ... ], }, { name: 'test 2', type: 'column', data: [ [1651363200000, 10], [1651449600000, 20], [1651536000000, 30], ... ], }, ], }, };Este gráfico no solo se usa para mostrar el día, sino también los meses y los años. Por favor responde mi pregunta
Utilice la opción xAxis.tickInterval . En este caso:
xAxis: { tickInterval: 24 * 3600 * 1000, type: 'datetime', labels: { format: '{value:%Y-%m-%d}', rotation: 90, align: 'left' }, }Demostración: https://jsfiddle.net/BlackLabel/t0Lohusx/
Referencia de la API: https://api.highcharts.com/highcharts/xAxis.tickInterval