Interface ViewResult

interface ViewResult {
    key: string;
    label: string;
    legendItems: ViewLegendItem[];
    mapping: ViewMapping[];
    type: ViewInfoType;
    viewOptionSupport?: {
        optionalConstraint?: string;
        usesRangeLegend?: boolean;
    };
}

Hierarchy

Properties

key: string
label: string
legendItems: ViewLegendItem[]
mapping: ViewMapping[]
viewOptionSupport?: {
    optionalConstraint?: string;
    usesRangeLegend?: boolean;
}

Type declaration

  • Optional optionalConstraint?: string
  • Optional usesRangeLegend?: boolean

Generated using TypeDoc