Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
93
rated 0 times [  95] [ 2]  / answers: 1 / hits: 99443  / 8 Years ago, tue, july 26, 2016, 12:00:00

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
}
}]

More From » charts

 Answers
27

This disables the vertical Y axis line:



options: {
scales: {
yAxes: [{
gridLines: {
drawBorder: false,
},
}]
},
},


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


[#61248] Saturday, July 23, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
gleng

Total Points: 471
Total Questions: 107
Total Answers: 102

Location: Virgin Islands (U.S.)
Member since Fri, May 7, 2021
3 Years ago
;