-
Notifications
You must be signed in to change notification settings - Fork 12k
Closed
Labels
Description
If I set the gridlines in my xAxes to false my bar titles are not shown correctly.
My Chart settings:
statisticChart = new Chart(ctx, {
type: 'bar',
data: copiedData,
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
stepSize:1
},
gridLines: {
}
}],
xAxes: [{
ticks:{
},
gridLines: {
display:false
}
}]
}
}
});
If I set gridLines.display to true. Everything works fine.
Regards Tobi

