gpt4 book ai didi

javascript - Chartjs 隐藏数据集图例 v3

转载 作者:行者123 更新时间:2023-12-05 00:34:31 25 4
gpt4 key购买 nike

我当前在网页上的图表由 Chart.js v2.5.3 提供支持。不久前配置的图表工作得很好。这是代码:

var ctw = document.getElementById("chart-budget");
var myChart = new Chart(ctw, {
type: 'bar',
data: {
labels: ["budget", "costs"],
datasets: [{
label: "Amount",
data: [520980, 23397.81],
backgroundColor: [
'rgba(143, 211, 91, 0.2)',
'rgba(255, 99, 132, 0.2)',
],
borderColor: [
'rgba(143, 211, 91,1)',
'rgba(255, 99, 132, 1)',
],
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
responsive: true,
scales: {
yAxes: [{
ticks: {
beginAtZero: true
},
gridLines: {
drawBorder: false,
}
}],
xAxes: [{
gridLines: {
display: false,
}
}]
}
}
});


由于 v3 现在可用,我正在考虑切换到它。快速测试揭示了一些我需要克服的问题。我正在努力解决的问题之一是无法隐藏数据集图例。在 V2.5 中,它由 options.legend.display 完成设置为 false 但不再设置。
the documentation我没有遇到任何可以帮助我的东西。
有没有人可以建议如何在 Chart.js V3 中隐藏图例?
/库巴

最佳答案

像下面这样配置选项将解决 V3 版本中的问题。

options: { plugins: { legend: { display: false }, } }

关于javascript - Chartjs 隐藏数据集图例 v3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66943360/

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