Defines an encoding of data value into color space.

interface DashboardColor {
    hex: string;
    id: string;
    name: string;
    type: "text" | "min" | "max" | "threshold" | "scale" | "background";
    value: number;
}

Properties

Properties

hex: string

The hex number of the color

id: string

The unique ID of the view color.

name: string

The user-facing name of the hex color.

type: "text" | "min" | "max" | "threshold" | "scale" | "background"

Type is how the color is used.

value: number

The data value mapped to this color.

MMNEPVFCICPMFPCPTTAAATR