UNPKG

@progress/kendo-react-excel-export

Version:

React Excel export helps you export and save data to Excel files and customize or filter the output. KendoReact Excel Export package

46 lines (45 loc) 1.06 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { CellOptions } from './ooxml/CellOptionsInterface'; /** * @hidden */ export interface ColumnBase { /** * @hidden */ children?: any; /** * The options of the column header cell. */ headerCellOptions?: CellOptions; /** * Sets the visibility of the column. * * @default false */ hidden?: boolean; /** * @hidden */ level?: number; /** * Toggles the locked (frozen) state of the column. * * @default false */ locked?: boolean; /** * The title of the column. */ title?: string; /** * The width of the column in pixels. */ width?: number; }