interface MergeGridConfig {
    fieldMap: {
        field: string;
        sources: string[];
    };
    gridId: string;
    layers: {
        layerId: string;
        subLayers: number[];
    };
    options: TableStateOptions;
}

Properties

fieldMap: {
    field: string;
    sources: string[];
}

The mapping parameters for the merge grid.

gridId: string

The id of the merge grid.

layers: {
    layerId: string;
    subLayers: number[];
}

Ids for layers contained in the merge grid.

The state options for the merge grid.