option = {
title: {
text: '对数轴示例',
left: 'center'
},
yAxis: {
type: 'value',
},
xAxis: {
type: 'log',
min: 20,
max: 20000
},
series: [{
type: 'line',
smooth: true,
data: [
[1000, 3],
[2000, 9],
[3000, 3]
]
}]
};