option = {
xAxis: {
type: 'category',
data: ['1980', '1985', '1990', '1995', '2000', '2005', '2010']
},
title: {
left: 'center',
text: '中国GDP变化图',
},
yAxis: {
type: 'value'
},
series: [{
data: [4588, 9099, 18873, 61340, 100280, 187319, 413030],
type: 'line'
}]
};