XY轴皆为value类型时堆叠能否设置方向?

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
    title: {
        text: 'Sample Chart'
    },
    xAxis: {
        type: 'value'
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        type: 'line',
        stack: 'ch1',
        data:[
            [1, 10],
            [2, 20],
            [3, 30]
        ]
    }, {
        type: 'line',
        stack: 'ch1',
        data:[
            [1, 10],
            [2, 20],
            [3, 30]
        ]
    }]
};