gpt4 book ai didi

chart.js - 如何在chartjs中仅显示轴边框(无网格线)?

转载 作者:行者123 更新时间:2023-12-04 12:20:59 26 4
gpt4 key购买 nike

所以我只想显示轴边界线 - 并隐藏网格线。这是使用最新版本的chart.js 包(2.9.3),我在一个简化的Codepen 中复制了我的问题。如下图:

var myChart = new Chart(ctx, {
type: 'scatter',
data: {
labels: [4, 0],
datasets: [{
data: [
{ group_name: "Group A", x: 4, y: 25 },
{ group_name: "Group B", x: 0, y: 0 },
],
}],
},
options: {
legend: { display: false },
scales: {
yAxes: [ {
type: 'logarithmic',
scaleLabel: { display: true, labelString: 'Active %', fontSize: 15 },
position: 'left',
gridLines: { display: false, drawBorder: true },
ticks: {
min: 0,
max: 50,
maxTicksLimit: 4,
padding: 10,
callback: value => `${value.toLocaleString()}%`,
},
} ],
xAxes: [ {
type: 'logarithmic',
position: 'bottom',
scaleLabel: { display: true, labelString: 'User Count', fontSize: 15 },
gridLines: { display: false, drawBorder: true },
ticks: {
min: 0,
maxTicksLimit: 6,
padding: 10,
callback: value => value.toLocaleString(),
},
} ],
},
}
});

任何帮助或见解表示赞赏;我希望从文档中使用的设置似乎不起作用。

最佳答案

gridLines: { drawBorder: true, lineWidth: 0 }

关于chart.js - 如何在chartjs中仅显示轴边框(无网格线)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58864917/

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