'How to remove the Chart.js x Axis bottom line?
I am using Chart.js 2.8.0 trying to get rid of the X/Y axis border.
With gridLines { showBorder: false }} I am still seeing the X axis border.
I also have the color set to 0 alpha, all the other lines on X and Y are gone except for the bottom one on the X axis that just wont go away.
Tries some other options like drawBorder: false and scaleLineColor: "rgba(0,0,0,0)", none affected the bottom line on the X axis.

This is my chart configurations
type: 'line',
data: {
datasets: [{
label: '',
data: [],
backgroundColor: [],
borderWidth: 1
}]
},
options: {
scaleLineColor: "rgba(0,0,0,0)",
layout: {
padding: {
top: 20
}
},
legend: {
display: false
},
scales: {
gridLines: {
showBorder: false
},
xAxes: [{
gridLines: {
color: "rgba(0, 0, 0, 0)",
}
}],
yAxes: [{
gridLines: {
color: "rgba(0, 0, 0, 0)",
},
ticks: {
beginAtZero: true,
display: false,
}
}]
}
}
};
Solution 1:[1]
After some time fiddling with it I have found the solution zeroLineColor: 'transparent' did the trick. Found it here https://github.com/chartjs/Chart.js/issues/3950
scales: {
xAxes: [{
gridLines: {
zeroLineColor: 'transparent'
},
}],
Solution 2:[2]
If anyone is on v3 and is looking for the answer, its options.scales.x.grid.drawBorder: false
This is on v3.7.1 Found it by complete accident by looking through the typescript file and trying anything that looked relevant.
Solution 3:[3]
this answer for who are using recharts module :
<XAxis strokeOpacity={0} dataKey="name" />
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Sniffleh |
| Solution 2 | Lumen27 |
| Solution 3 | phan kosal |
