在timeline
视图中,时间显示 17 天或更短,但超过 18 天时,时间将被隐藏。
views: {
//This is ok.
custom17days: {
type: 'timeline',
visibleRange: function(currentDate) {
return {
start: currentDate,
end: currentDate.clone().add(17, 'days')
};
}
},
//*** time display disappears! why?
custom18days: {
type: 'timeline',
visibleRange: function(currentDate) {
return {
start: currentDate,
end: currentDate.clone().add(18, 'days')
};
}
}
}
这是代码笔: https://codepen.io/nextageot/pen/JVLXMo?editors=0010
您知道如何始终显示时间而不考虑天数吗?
它会尝试猜测,但是如果你将显式的displayEventTime指定为true
,它将始终显示时间。