@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
25 lines (24 loc) • 927 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 { GanttViewHandle, GanttViewProps } from '../interfaces/GanttView.js';
import * as React from 'react';
/**
* @hidden
*/
export interface GanttDayViewProps extends GanttViewProps {
/**
* The span of an hour slot. Defaults to 1.
*/
slotDuration?: number;
}
/**
* Represents the KendoReact DayView Component.
*/
export declare const GanttDayView: React.ForwardRefExoticComponent<GanttDayViewProps & React.RefAttributes<GanttViewHandle | null>>;
/** @hidden */
export declare const ganttDayViewDefaultProps: GanttDayViewProps;