MAIDR Documentation - v4.4.0
    Preparing search index...

    Interface TableauMeasureColumn

    A column read as a value: what the pitch and the numbers come from.

    interface TableauMeasureColumn {
        column: TableauColumn;
        viewIndex: number;
        caption: string;
        numeric: boolean;
        temporal: boolean;
        role: "measure";
        agg?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    viewIndex: number

    Index into a TableauRow — i.e. the column's position in the original view-order column list, dropped columns included. Dropping a column never shifts the columns after it.

    caption: string

    Human-facing name: the aggregation wrapper unwrapped where possible.

    numeric: boolean

    Whether dataType is one of Tableau's numeric types.

    temporal: boolean

    Whether the column carries a date or date-time.

    role: "measure"
    agg?: string

    Aggregation wrapper as written, e.g. SUM. Absent on a bare numeric.