```html
// 初始化 ECharts 实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
title: {
text: '中国历届冬奥会奖牌统计',
subtext: '数据来源:国际奥林匹克委员会',
left: 'center'
},
tooltip: {
trigger: 'axis'
},
legend: {
['金牌', '银牌', '铜牌'],
top: 'bottom'
},
toolbox: {
show: true,
feature: {
dataView: {readOnly: false},
magicType: {type: ['line', 'bar']},
restore: {},
saveAsImage: {}
}
},
xAxis: {
type: 'category',
['1980', '1984', '1988', '1992', '1994', '1998', '2002', '2006', '2010', '2014', '2018']
},
yAxis: {
type: 'value'
},
series: [
{
name: '金牌',
type: 'bar',
[0, 0, 0, 0, 0, 0, 1, 2, 5, 3, 9]
},
{
name: '银牌',
type: 'bar',
[0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 6]
},
{
name: '铜牌',
type: 'bar',
[0, 0, 0, 0, 0, 0, 4, 5, 5, 2, 2]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);