Interface AnalyticsTableRowExperimental

One rendered row of the accessible table.

interface AnalyticsTableRow {
    count?: string;
    extent?: string;
    fraction: number;
    isNull: boolean;
    key: string;
    label: string;
    value: string;
}

Properties

count?: string

Formatted row count when it differs from the value.

extent?: string

Bucket / interval description for histogram and time-series marks.

fraction: number

value / max, clamped to [0, 1]. 0 for null measures.

isNull: boolean

True when the underlying measure was null.

key: string
label: string
value: string

Formatted value, or the explicit null rendering.