我对chartjs有一点经验,但我无法找到隐藏默认行的方法。我在这里添加这个图像,我需要修复。我需要像这个https://i.stack.imgur.com/UXMpi.png那样隐藏这条线。我要把它做得像这个https://i.stack.imgur.com/Phsos.png
如果有人知道怎么做,请告诉我。谢谢。
发布于 2022-06-30 12:57:37
在x轴的网格设置中将display设置为false,在两个轴中将drawBorder设置为false,如下所示:
const options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderColor: 'orange'
},
{
label: '# of Points',
data: [7, 11, 5, 8, 3, 7],
borderColor: 'pink'
}
]
},
options: {
scales: {
x: {
grid: {
display: false,
drawBorder: false
}
},
y: {
grid: {
drawBorder: false
}
}
}
}
}
const ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.8.0/chart.js"></script>
</body>
https://stackoverflow.com/questions/72815994
复制相似问题