在数据缺失时如何使boxplot与横坐标类别对齐

描述:当前是关于Echarts图表中的 示例。
 
            option = {
    xAxis: {
        type: 'category',
        data: ['A', 'B', 'C', 'D']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        name: 'test_boxplot',
        type: 'boxplot',
        data: [{
            name: 'A',
            value: [0, 1, 2, 3, 4]
        }, {
            name: 'B',
            value: [0, 1, 2, 3, 4]
        }, {
            name: 'D',
            value: [0, 1, 2, 3, 4]
        }]
    }, {
        name: 'text_scatter',
        type: 'scatter',
        data: [
            ['A', 1],
            ['B', 2],
            ['D', 3]
        ]
    }]
};