@deephaven/js-plugin-ag-grid
Version:
Deephaven AG Grid plugin
18 lines • 806 B
TypeScript
import { Settings } from '@deephaven/jsapi-utils';
import { AgGridReactProps } from 'ag-grid-react';
import { AgGridTableType } from '../types';
export type AgGridViewProps = {
/** Table to be displayed */
table: AgGridTableType;
/** Settings controlling the formatting of the data */
settings?: Settings;
/** Other props to pass through to the `AgGridReact` component */
agGridProps?: AgGridReactProps;
};
/**
* AgGrid view that uses the Server-Side Row Model and a Deephaven table as a data source to display
* in AG Grid, with support for value formatting, sorting, and basic filtering operations.
*/
export declare function AgGridView({ table, settings, agGridProps, }: AgGridViewProps): JSX.Element | null;
export default AgGridView;
//# sourceMappingURL=AgGridView.d.ts.map