/**
 * Config used when transposing a Grid
 */
export interface TransposeConfig {
    /**
     * Column to use to do transposition
     * @defaultValue Primary Key Column
     */
    transposedColumnId?: string;
    /**
     * Hide the Transposed Column
     * @defaultValue true
     */
    hideTransposedColumn?: boolean;
    /**
     * Only show curerntly visible Columns
     * @defaultValue false
     */
    visibleColumns?: boolean;
    /**
     * Only show curerntly visible Rows
     * @defaultValue false
     */
    visibleRows?: boolean;
    /**
     * Autosize columns in transposed view
     * @defaultValue true
     */
    autosize?: boolean;
}
