@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
31 lines (30 loc) • 661 B
TypeScript
/**
* 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;
}