@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
30 lines (29 loc) • 932 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The props of the GridFooterCell component
* ([see example](https://www.telerik.com/kendo-react-ui/components/grid/cells#toc-footer-cells)).
*/
export interface GridFooterCellProps {
/**
* The field to which the footer cell is bound.
*/
field?: string;
/**
* The styles of the footer cell.
*/
style?: React.CSSProperties;
/**
* The `colSpan` of the footer cell.
*/
colSpan?: number;
/**
* The index to be applied to the `aria-colindex` attribute.
*/
ariaColumnIndex: number;
}