0
我正在處理一個圖表-js條形圖,它必須放在一個小格子裏面,所以我正在尋找一種方法來使x軸中的標籤水平而不是對角線。關鍵是要爲實際酒吧獲得儘可能多的高度,因爲現在標籤消耗了將近40%的可用空間。Chart.js中的水平xAxis標籤
這是我的代碼:
let options = {
responsive: true,
maintainAspectRatio: false,
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}],
xAxes: [{
display: false
}]
}
};
let ctx = document.getElementById('barChartCtx');
let barChart = new Chart(ctx, {
type: 'bar',
data: data,
options: options
});
我已暫時禁用x軸的標籤。它的作品,但理想情況下,我希望他們是水平的。思考?