x,y均为value,有什么方法可以实现仅在两折线之间填充颜色

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        type:'value',
    },
    yAxis: {
        type:'value'
    },
    series: [{
        type: 'line',
        data:[[1,2], [2,4], [3,5],[5,7]]
    },
    {
        type: 'line',
        data:[[1,3], [2,5], [3,6],[5,8]]
    }]
};