我正在尝试使用笔谱可视化大量数据。到目前为止,我对库确实感到惊讶,但是我无法使其正确地与unix时间戳一起使用。我希望日期以人类可读的格式显示。我从他们的页面中以他们的示例为例,并将我的一些数据粘贴到其中:
g = new Dygraph(
document.getElementById("graph"),
// For possible data formats, see http://dygraphs.com/data.html
// The x-values could also be dates, e.g. "2012/03/15"
`X,Y1
1532163461391,19.179613
1532163462391,20.12414
1532163463391,20.370108`,
{
// options go here. See http://dygraphs.com/options.html
legend: 'always',
animatedZooms: true,
title: 'dygraphs chart template',
axis : {
x : {
valueFormatter: Dygraph.dateString_,
ticker: Dygraph.dateTicker
}
}
});
答案 0 :(得分:0)
您只有一个小错字。将axis
更改为axes
。