盒须图 的数据serice.data的结构使用object形式时数据失效

描述:当前是关于Echarts图表中的 盒须图 示例。
 
            option = {

    xAxis: {
        type: 'category',
        data: ["a", "b","c","d"]

    },
    yAxis: {
        type: 'value',
        name: 'km/s minus 299,000',
        splitArea: {
            show: true
        }
    },
    series: {
        name: 'boxplot',
        type: 'boxplot',
        data: [
            [1, 2, 4, 5, 7],
            [1, 2, 4, 5, 7],
            
            {
                name: "c",
                value: [1,2,3,4,5]
            },
            [1, 2, 4, 5, 7]
        ]

    }
};