Interface UniqueValueEntryExperimental

One categorical class.

interface UniqueValueEntry {
    color?: string;
    label?: string;
    style?: RendererStyle;
    value: string | number | boolean;
}

Properties

color?: string
label?: string

Advanced multi-property override; replaces the color shorthand.

value: string | number | boolean