2022年冬奥会前五名国家奖牌统计图
```html
// 数据
const countries = ["中国", "俄罗斯", "美国", "挪威", "德国"];
const goldMedals = [15, 10, 7, 11, 4];
const silverMedals = [6, 11, 6, 8, 6];
const bronzeMedals = [9, 8, 6, 6, 5];
// 创建图表
const ctx = document.getElementById('medalChart').getContext('2d');
const medalChart = new Chart(ctx, {
type: 'bar',
{
labels: countries,
datasets: [{
label: '金牌',
backgroundColor: 'gold',
goldMedals
}, {
label: '银牌',
backgroundColor: 'silver',
silverMedals
}, {
label: '铜牌',
backgroundColor: 'brown',
bronzeMedals
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
xAxes: [{
stacked: true
}],
yAxes: [{
stacked: true
}]
}
}
});