ZingChart x 轴上的日期时间
Date-Time on x-axis of ZingChart
我想绘制日期时间与整数的关系图。我试过 Date(year,month,day,hours,minutes,seconds) 但它不支持它。那么是否可以使用 zingChart 在 x 轴上绘制日期时间?
要显示日期,您可以在 scale-x
上使用 transform
属性。它允许您根据需要格式化您的 Unix 时间戳。这是一个例子。
"scale-x":{
"transform":{
"type":"date",
"all":"%d %M, %h:%i %A"
}
}
你可以看到 rendered chart here
Here's a link to the docs 在 ZingChart 网站上进行日期时间转换。我在 ZingChart 团队。如果您有更多问题,请联系我们。
我想绘制日期时间与整数的关系图。我试过 Date(year,month,day,hours,minutes,seconds) 但它不支持它。那么是否可以使用 zingChart 在 x 轴上绘制日期时间?
要显示日期,您可以在 scale-x
上使用 transform
属性。它允许您根据需要格式化您的 Unix 时间戳。这是一个例子。
"scale-x":{
"transform":{
"type":"date",
"all":"%d %M, %h:%i %A"
}
}
你可以看到 rendered chart here
Here's a link to the docs 在 ZingChart 网站上进行日期时间转换。我在 ZingChart 团队。如果您有更多问题,请联系我们。