本文介绍了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:
let start = new Date(),
end = new Date();
start.setDate(start.getDate() - 7); // set to 'now' minus 7 days.
start.setHours(0, 0, 0, 0); // set to midnight.
new Chart(document.getElementById("chart"), {
type: "line",
options: {
scales: {
xAxes: [{
type: "time",
time: {
min: start,
max: end,
unit: "day"
}
}]
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.bundle.min.js"></script>
<canvas id="chart"></canvas>
日期算术之所以有效是因为 日期对象在设置月份的值无效时自动更正.
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 天?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!