gpt4 book ai didi

chart.js - ChartJS : Remove padding to the right of chart caused by tick labels

转载 作者:行者123 更新时间:2023-12-05 08:31:47 24 4
gpt4 key购买 nike

我正在使用最新版本的 Chart.js 并试图使折线图一直运行到包含 div 的边缘,但是当我启用 yAxes 刻度时,它会在右边或中间添加一个小填充换句话说,将图形向左推。

我怎样才能有刻度标签并让图表延伸到 <canvas /> 的边缘? ?

查看截图:

enter image description here

enter image description here

enter image description here

enter image description here

最佳答案

您应该能够通过使用 different callback hooks 来解决类似的问题。在更新过程中可用。

通过我自己的测试,我能够通过在 afterFit 方法中将轴上的正确填充设置为 0 来修复这个差距,该方法基于在文档上是:

Callback that runs after the scale fits to the canvas

const options = {
scales: {
xAxes: [{
afterFit: (axis) => {
axis.paddingRight = 0;
}
}]
}
}

关于chart.js - ChartJS : Remove padding to the right of chart caused by tick labels,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55763967/

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