默认情况下,刻度根据时间线中的时间范围选择进行格式化。如果它跨天显示月份,如果它在一天内,它只显示时间。这很棒!
现在我想本地化这些刻度。我可以提供 xAxisTickFormatting 来完成这项工作,但我想根据时间范围选择进行格式化。“MMM DD”或“HH:MM”基于当前时间范围选择。
为此,我需要在时间范围选择事件上动态更改格式化函数。有这样的活动吗?或者有没有其他方法可以实现这一目标?
默认情况下,刻度根据时间线中的时间范围选择进行格式化。如果它跨天显示月份,如果它在一天内,它只显示时间。这很棒!
现在我想本地化这些刻度。我可以提供 xAxisTickFormatting 来完成这项工作,但我想根据时间范围选择进行格式化。“MMM DD”或“HH:MM”基于当前时间范围选择。
为此,我需要在时间范围选择事件上动态更改格式化函数。有这样的活动吗?或者有没有其他方法可以实现这一目标?
在您的图表中,在其他属性中,您可以声明
<ngx-charts-bar-horizontal-normalized
...
[xAxis]="true"
[xAxisTickFormatting]='formatPercent'
...
</ngx-charts-bar-horizontal-normalized>
formatPercent是在您的 .ts 文件(我正在使用 Angular)中声明的函数,编写如下
formatPercent(val) {
if (val <= 100) {
return val + '%';
}
}
有关任何参考,请查看此处的文档
希望这可以帮助。
看起来,日期是根据 d3 逻辑格式化的。它使用该刻度可用的精度。因此,如果 date 为12/15/2020 11:30:00
,则精度为分钟级别。同样,如果 date 为12/15/2020 00:00:00
,则精度为日级别。现在我们可以相应地选择格式选项。
var locale = 'fr-FR'; // 'en-US'
function formatDate(value) {
let formatOptions;
if (value.getSeconds() !== 0) {
formatOptions = { second: '2-digit' };
} else if (value.getMinutes() !== 0) {
formatOptions = { hour: '2-digit', minute: '2-digit' };
} else if (value.getHours() !== 0) {
formatOptions = { hour: '2-digit' };
} else if (value.getDate() !== 1) {
formatOptions = value.getDay() === 0 ? { month: 'short', day: '2-digit' } : { weekday: 'short', day: '2-digit' };
} else if (value.getMonth() !== 0) {
formatOptions = { month: 'long' };
} else {
formatOptions = { year: 'numeric' };
}
return new Intl.DateTimeFormat(locale, formatOptions).format(value);
}
var dates = ['12/15/2020 11:30:30', '12/15/2020 11:30:00', '12/15/2020 11:00:00', '12/15/2020 00:00:00', '12/13/2020 00:00:00', '12/01/2020 00:00:00', '01/01/2020 00:00:00'];
for (date of dates) {
console.log(date, '=>', formatDate(new Date(date)));
}
现在这个函数可以用作
<ngx-charts-line-chart
[xAxis]="true"
[xAxisTickFormatting]="formatDate">
</ngx-charts-line-chart>