在数据缺失时如何使boxplot与横坐标类别对齐echarts boxplot配置项内容和展示

类似气泡图,圆点可以根据给定数据的第一列来确定其横坐标(提供的是类别),绘制boxplot时应该如何配置?

配置项如下
      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]
        ]
    }]
};
    
截图如下