gpt4 book ai didi

javascript - 图表 : how to show only max and min values on y-axis

转载 作者:搜寻专家 更新时间:2023-11-01 05:03:33 25 4
gpt4 key购买 nike

使用 Chart.js,我只想在 y 轴上显示两个标签(或刻度):值的最大值和最小值。这些值都是 float 。

我不确定回调函数 yAxis.ticks.callback 是否是执行此操作的地方。

最佳答案

您可以对 y 轴刻度使用以下回调函数来实现:

callback: function(value, index, values) {
if (index === values.length - 1) return Math.min.apply(this, dataArr);
else if (index === 0) return Math.max.apply(this, dataArr);
else return '';
}

注意:您必须为数据值使用单独的数组(这里是dataArr),而不是内联数组。

编辑:

在您的 y 轴刻度配置中添加以下内容,使数据点与刻度完美对齐:

min: Math.min.apply(this, dataArr),
max: Math.max.apply(this, dataArr)

ᴡᴏʀᴋɪɴɢ ᴇxᴀᴍᴘʟᴇ

var dataArr = [154.23, 203.21, 429.01, 637.41];
var chart = new Chart(ctx, {
type: 'line',
data: {
labels: ['Jan', 'Feb', 'Mar', 'Apr'],
datasets: [{
label: 'LINE',
data: dataArr,
backgroundColor: 'rgba(0, 119, 290, 0.2)',
borderColor: 'rgba(0, 119, 290, 0.6)',
fill: false,
tension: 0
}]
},
options: {
scales: {
yAxes: [{
ticks: {
min: Math.min.apply(this, dataArr),
max: Math.max.apply(this, dataArr),
callback: function(value, index, values) {
if (index === values.length - 1) return Math.min.apply(this, dataArr);
else if (index === 0) return Math.max.apply(this, dataArr);
else return '';
}
}
}]
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js"></script>
<canvas id="ctx"></canvas>

关于javascript - 图表 : how to show only max and min values on y-axis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45788483/

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