在 Chart.js 中隐藏 y 轴上的标签
我需要在使用库 chart.js 绘制的折线图中隐藏标签.我用谷歌搜索但没有运气.可以隐藏吗?
I need to hide labels in line chart drawn using library chart.js. I googled but no luck. Could that be hidden?
谢谢
推荐答案
要仅隐藏标签,在 Charts.js 的 2.3.0 版本中,您可以像这样禁用 ticks
:
To hide just the labels, in version 2.3.0 of Charts.js, you disable ticks
like so:
options: {
scales: {
yAxes: [{
ticks: {
display: false
}
}]
}
}
相关文章