Chartjs - How to get last 7 days on x-axis labels?(Chartjs - 如何在 x 轴标签上获取最后 7 天?)
问题描述
我试图在我的折线图的 x 轴上获取最后 7 天(使用 chartjs).最好的方法是什么?
I am trying to get the last seven days on the x-axis of my line-chart (using chartjs). What is the best way to do this?
谢谢
推荐答案
您可以使用以下代码实例化过去 7 天的图表:
You can instantiate a chart for the last seven days with the following code:
日期算术之所以有效是因为 日期对象在设置月份的值无效时自动更正.
The date arithmetic works because of the Date object auto correcting itself when the value is invalid for the set month.
您需要将值提供为 x
(或 t
)&y
属性,指定在文档中.
You'll need to provide your values as x
(or t
) & y
properties, as specified in the documentation.
这篇关于Chartjs - 如何在 x 轴标签上获取最后 7 天?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!