神奇的line图表展示问题echarts 折线配置项内容和展示

X轴、Y轴给的数据,都是非对称的,展示出来的line图表不应该是对角直线,而是应该是折线。这个是echars的bug吗?还是代码问题?

配置项如下
      option = {
    title: {
        text: 'AUC:',
        x: 'center'
    },
    xAxis: {
        name: '真正率',
        type: 'value',
        nameLocation: 'center',
        min: 0,
        max: 1,
        data: [0,0.2,0.4,0.8,1]
    },
    yAxis: {
        name: '假正率',
        nameLocation: 'center',
        type: 'value',
        min: 0,
        max: 1,
        show: true
    },
    series: [{
        name: 'AUC:',
        data: [0.7,0.3,0.8,0.25,0.55],
        type: 'line',
        areaStyle: {}
    }]
};
    
截图如下