Interface SpatialAggregationWidgetMetadata

interface SpatialAggregationWidgetMetadata {
    field?: string;
    groupBy?: readonly string[];
    id: string;
    interactions?: readonly ("filter" | "drilldown" | "highlight")[];
    kind: SpatialAggregationWidgetKind;
    progressive?: {
        partialValueSemantics: SpatialAggregationProgressRefinement;
        stableAcrossPages: boolean;
    };
    summaryId?: string;
    summaryIds?: readonly string[];
    title?: string;
    unit?: string;
    valueType?: SpatialAggregationValueType;
}

Properties

field?: string
groupBy?: readonly string[]
id: string
interactions?: readonly ("filter" | "drilldown" | "highlight")[]
progressive?: {
    partialValueSemantics: SpatialAggregationProgressRefinement;
    stableAcrossPages: boolean;
}
summaryId?: string
summaryIds?: readonly string[]
title?: string
unit?: string