The value of xAxes are not showing at below of xAxes but the values are showing within the graph as per the image. I need to show all the values to be shown in the below xAxes of graph.
CodePudding user response:
You need to set autoSkip
to false in the tick options:
const options = {
scales: {
x: {
ticks: {
autoSkip: false
}
}
}
}