是否可以在 AMChart4 DateAxis 中显示每天的具体时间

Is it possible to display specific hours per day in AMChart4 DateAxis

我正在显示一个基于 AMCharts4 甘特图示例的甘特图,它几乎可以满足我的要求。但我需要日期轴始终显示一天中的特定时间。 例如每天从 8 a.m。到 5 p.m。 (或 8 到 17)。即使没有数据,即使有数据。

我已经试过时间间隔设置 (https://www.amcharts.com/docs/v4/concepts/axes/date-axis/),但我并没有完全得到我想要的结果。

好的,我终于成功了。我现在正在使用轴中断。

var axisBreak = dateAxis.axisBreaks.create();
axisBreak.startDate = new Date( day + " 00:00" );
axisBreak.endDate = new Date( day + " 07:30" );

axisBreak = dateAxis.axisBreaks.create();
axisBreak.startDate = new Date( day + " 17:30" );
axisBreak.endDate = new Date( day + " 23:59:59.999" );

为我想要实现的事情而工作,然而 ;)