我所有的标签都在酒吧的顶部。我可以看到这个:
的数据
但我希望是这样
的
填充不适用于xAxes,但适用于yAxes。
legend: {display: false},
scales: {
xAxes: [{
position: 'top',
stacked: true,
ticks: {
stepSize: 1,
min: 0,
autoSkip: false,
fontColor: '#3f7ba2',
fontStyle: 600,
fontFamily: 'Italic',
},
gridLines: {
color: '#dedfe7',
tickMarkLength: 0,
}
}],
yAxes: [{
stacked: true,
ticks: {
min: 0,
fontColor: '#62aae8',
padding: 5
},
gridLines: {
color: '#dedfe7' //b5cce2
}
}],
}
字符串
1条答案
按热度按时间1l5u6lss1#
这是一个仅在chart.js 2.6.0及更低版本中存在的问题。正如你在release notes的bug修复中看到的那样,在PR 4403中,
ticks.padding
选项现在适用于垂直和水平缩放。因此,要解决您的问题,您需要将chart.js更新到2.7.0以上的版本
个字符