entviz — @entviz/core & @entviz/react API
    Preparing search index...

    Interface ChannelDescription

    interface ChannelDescription {
        bgColor: string;
        cells: CellDescription[];
        colorBarBands: { color: string; count: number }[];
        colorBarLetters: string[];
        cols: number;
        geometry: LayoutGeometry;
        markers: MarkerDescription;
        quartiles: QuartileDescription[];
        rows: number;
        truncated: boolean;
        typeName: string;
    }
    Index
    bgColor: string

    The grid background color (#rrggbb, an entviz palette color, never black).

    Every grid cell in reading order (index 0 → cols*rows-1).

    colorBarBands: { color: string; count: number }[]

    Color-bar bands, top → bottom: the exact band color + its usage count (band height is a function of the count). For the raster color-bar check (§6.3).

    colorBarLetters: string[]

    Color-bar band letters, top → bottom, lowercase (the rendered glyphs).

    cols: number
    geometry: LayoutGeometry

    Pixel geometry of every highlightable feature (for the comparison walk's focus rings) — see LayoutGeometry.

    quartiles: QuartileDescription[]
    rows: number
    truncated: boolean

    True for a >512-bit input (text channel is head + fingerprint-middle + tail).

    typeName: string