@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
26 lines (25 loc) • 863 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
*-------------------------------------------------------------------------------------------
*/
import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-react-data-tools';
/**
* Represents the available selection modes.
*/
export type GanttSelectableMode = TableSelectableMode;
/**
* Represents the Gantt selectable settings.
*/
export interface GanttSelectableSettings extends TableSelectableSettings {
/**
* The available values are:
* * `single`
* * `multiple`
*
* @default "multiple"
*/
mode?: GanttSelectableMode;
}