UNPKG

@progress/kendo-react-gantt

Version:

React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package

39 lines (38 loc) 1.03 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 { DateRange } from './DateRange.js'; import { GanttSlotType } from './GanttSlotType.js'; /** * The props of the Gantt view timeline header cell component. */ export interface GanttViewTimelineHeaderCellProps { /** * The date range of the cell. */ range: DateRange; /** * Indicates if the cell is in work time. */ isWork: boolean; /** * The default cell text value. */ text: string; /** * The type of the cell slot. */ type: GanttSlotType; /** * The header cell row index. */ rowIndex: number; /** * The header cell index. */ index: number; }