0
タイトルの上に棒グラフがあります。凡例の位置をグラフの右側に変更するにはどうすればよいですか。他のフォーラムで検索しましたが、何も見つかりませんでした。ここに私のコードは次のとおりです。Chart.js:タイトル/凡例を右に移動
let ctx = document.getElementById('canvas');
let chart = new Chart(ctx, {
type: 'bar',
data: {
labels: [1, 2, 3, 4, 5],
datasets: [{
label: 'Votes',
data: [1, 2, 3, 4, 5],
backgroundColor: 'rgba(255, 0, 0, 0.2)'
}, {
label: 'Score',
data: [1, 2, 3, 4, 5],
backgroundColor: 'rgba(0, 255, 0, 0.2)'
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
あなたのpromt答えをありがとう。正確に私が必要なもの! –
あなたはようこそ! –