gpt4 book ai didi

javascript - Chart.js v2 - 使用时间刻度时如何 'fill' 图表

转载 作者:行者123 更新时间:2023-12-02 14:04:03 29 4
gpt4 key购买 nike

我正在使用 chart.js v2 创建图表我有一个很好的工作图,它使用 time scaled axis 。现在我想在轴上显示整个小时,所以我设置如下选项:

xAxes: [{
type: 'time',
time: {
unit: 'hour',
unitStepSize: 1,
displayFormats: { 'hour': 'H:mm' }
}
}]

这效果很好,但图表的开头和结尾有间隙。 enter image description here

我怎样才能让它像这样: enter image description here

代码笔: http://codepen.io/WilbertE/pen/wzRmWr

最佳答案

您想要使用 time 属性的 minmax 属性:

options: {
scales: {
xAxes: [{
type: "time",
time: {
min: /* Set your min here .. */,
max: /* .. and your max here*/
}
}]
}
}

关于javascript - Chart.js v2 - 使用时间刻度时如何 'fill' 图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40179935/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com