import { GridVisualizationSettingsBase } from './GridVisualizationSettingsBase'; export declare class GridVisualizationSettings extends GridVisualizationSettingsBase { constructor(); /** * Gets or sets whether the grid should have paging enabled. * Paging is supported only when ProcessDataOnServer is set to true and is not compatible with Data Blending. * Supported data sources include: Athena, BigQuery, MySQL, Oracle, PostgreSQL, SQL Server, and SyBase. */ isPagingEnabled: boolean; /** * Gets or sets the number of rows to display in the grid. */ pageSize: number; /** * Gets whether the first column in the grid is fixed. */ get isFirstColumnFixed(): boolean; /** * Sets whether the first column in the grid is fixed. */ set isFirstColumnFixed(value: boolean); }