-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Description
What problem does this feature solve?
Since v5, the interval option of time axes is no long valid because the span of each two ticks are not always the same (e.g., Feburary has 28/29 days while March has 31 days). But it's a common requirement to set the interval level (or the minimium interval level) to be yearly/monthly/dayly/... and it can hardly be done with the current API.
What does the proposed API look like?
I'd suggest we support interval, minInterval, and maxInterval in the type of TimeUnit. If the developer want to set the interval to be 4 days, '4 days' or '4 day' is also valid.
So, valid examples of intervals include: 'year', 'quarter', '4 days', '4 day', '30 minutes', and etc.
#17044 is trying to provide a number typed
intervalbut this cannot solve the problem of each month having different days. Using the interval of1000 * 3600 * 24 * 30is not accurate and logically not correct. Similar for the leap year problem.
For example, to display use ticks by month:
xAxis: {
type: 'time',
interval: 'month',
axisLabel: { // optional
showMinLabel: true,
formatter: {
year: '{yyyy}',
month: '{MMM}',
day: '{yyyy} {MMM}'' // hack for the first day
}
}
}The ticks will be at the first date of each month (excluding the first one because it's displaying only because showMinLabel: true):
|_____________|__________________________|__________________________|__ ...
2019 Dec 2020 Feb March
minInterval and maxInterval works similarly.
Note that if interval is set to be like '4 days', the first day of each month may not be on ticks any more:
|________|________|________|________ ...
6/21 6/25 6/29 7/3
In this case, 7/1 is not included in the ticks. #16335
Related issues
- 当x轴为时间轴时X轴配置项interval设置无效[Bug] #16927
- [Bug] interval on time axes seems to be ignored #17519
- Latest version: When type is set to time, the time stamp of interval setting is invalid 最新版本:type设置为time时,interval设置时间戳无效 #16142
- I can't Set 3-hour interval with x-axis #15266
- xAxis interval option not works with timeseries line graph #14305
- set interval on e-chart of type 'time', there is no to set interval against only day or month or year independently #14298