折线图:series无数据时,连接折线断开

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/LzzMandy/article/details/82424236

option = {
    grid:{
        left:'40%',
        bottom:'50%',
    },
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [820, 932, 901, '', '', 1330, 1320],
        type: 'line',
        smooth: true,
        // 是否连接空数据。
        connectNulls: true,
    }]
};

猜你喜欢

转载自blog.csdn.net/LzzMandy/article/details/82424236