UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

22 lines (21 loc) 496 B
/** * Defines which types of Rows to exclude when rendering Format Columns, Action Columns and Badges */ export interface RowScope { /** * Exclude regular data rows */ ExcludeDataRows?: boolean; /** * Exclude Group Rows */ ExcludeGroupRows?: boolean; /** * Exclude Summary Rows (used in Row Summaries) */ ExcludeSummaryRows?: boolean; /** * Exclude Grand Total Rows (used in Aggregations) */ ExcludeTotalRows?: boolean; }