我需要为我的 amChart 源使用 Unix 时间 (1608713282) 应该是 12/23/20 04:30:00,但是它在工具提示中似乎将其读取为 01/19/70 00:00:00。
我尝试使用以下代码行在图表和 dateAxis 上正确格式化它...
chart.dateFormatter.inputDateFormat = 'x';
chart.dataSource.parser.options.dateFormat = 'x';
chart.dateFormatter.utc = true;
dateAxis.dateFormatter.inputDateFormat = 'x';
dateAxis.dataSource.parser.options.dateFormat = 'x';
dateAxis.dateFormatter.utc = true;
这是与我的 dateAxis 相关的代码:
// TimeStamp Axes
var dateAxis = chart.xAxes.push(new am4charts.DateAxis());
dateAxis.renderer.grid.template.location = 0;
dateAxis.renderer.minGridDistance = 100;
dateAxis.tooltipDateFormat = 'MM/dd/yy H:mm:ss';
通过一些调试,我发现有趣的是,将 JSON 源中的时间戳值用引号括起来会将显示的日期从 01/19/70 00:00:00 更改为 11/16/13 23:59:58,不同但仍然不正确。
这是我的数据的示例:
{
"tstamp": 1608697800,
"vol": 144,
"staff": 61,
"avail": 0
}
Helenr
相关分类