Interface LegendEntry

Runtime-facing legend entry.

interface LegendEntry {
    color?: string;
    iconUrl?: string;
    id: string;
    label: string;
    maxValue?: number;
    minValue?: number;
}

Properties

color?: string
iconUrl?: string
id: string

Stable id for UI list keys. Derived from label when absent.

label: string
maxValue?: number
minValue?: number