本文介绍了如何在ChartJs中隐藏y轴线?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用气泡图并且必须隐藏y轴线。我已经尝试了以下但它不起作用。
I am using bubble chart and gotta hide the y axis line. I've tried the following but it doesn't work.
yAxes: [{
angleLines: {
display: false
}
}]
推荐答案
这会禁用垂直Y轴线:
options: {
scales: {
yAxes: [{
gridLines: {
drawBorder: false,
},
}]
},
},
这可以与 display
结合使用以禁用垂直gridLines :
This can be combined with display
to disable the vertical gridLines:
xAxes: [{
gridLines: {
display: false,
},
}],
这是一个有效的例子:
Here's a working example: http://codepen.io/anon/pen/xqGGaV
这篇关于如何在ChartJs中隐藏y轴线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!