option = {
title: {
text: 'Awesome Chart'
},
xAxis: {
type: 'value',
boundaryGap: false
},
yAxis: {},
series: [{
type: 'line',
data: [
[1, 220],
[2, 182],
[3, 191],
[4, 234]
]
}, {
type: 'line',
data: [
[1, 200],
[3, 170],
[4, 200]
]
}]
};
// 大神指点指点
/*
两组数据,第二条数据,第二个参数不存在,但我想让时间点1跟时间点2直线连接起来,
该怎么写哈??
*/