Interface ReportTableColumn

interface ReportTableColumn {
    align?: TableColumnAlign;
    isCustomColumn?: boolean;
    key: string;
    label?: string;
    sortable?: boolean;
    type: DataModelFieldType;
    virtualKey?: string;
}

Properties

isCustomColumn?: boolean

A custom column is one that is provided by the report and does not correspond to an existing Fact Sheet attribute

key: string
label?: string
sortable?: boolean
virtualKey?: string

Generated using TypeDoc