我是Highcharts的新手,遇到了一个问题。我需要在x轴上显示所有日期,但默认情况下,我假设只显示偶数日期。我如何才能显示所有日期?
这里我的代码:
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],
...
],
},
],
},
};
这个图表不仅可以显示日,还可以显示月和年。请回答我的问题
1条答案
按热度按时间dgenwo3n1#
请使用
xAxis.tickInterval
选项。在此情况下:演示:https://jsfiddle.net/BlackLabel/t0Lohusx/
API引用:https://api.highcharts.com/highcharts/xAxis.tickInterval