在过去几届夏季奥运会中,中国一直是金牌榜上的常客。以下是一份简单的中国夏季奥运会金牌统计图,展示了中国在过去几届奥运会中获得的金牌数量。
var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['2000', '2004', '2008', '2012', '2016'],
datasets: [{
label: '金牌数量',
data: [28, 32, 51, 38, 26],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
该图表显示了中国在2000年至2016年期间的夏季奥运会上获得的金牌数量。可以清楚地看到,中国在2008年北京奥运会上取得了最大的突破,获得了51枚金牌。