@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
55 lines (54 loc) • 1.49 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the options for the pane that contains the treelist section.
*/
export interface TreeListPaneOptions {
/**
* Specifies if the user can hide the pane.
*/
collapsible?: boolean;
/**
* Specifies if the pane is collapsed initially.
*/
collapsed?: boolean;
}
/**
* Represents the options for the pane that contains the timeline section.
*/
export interface TimelinePaneOptions extends TreeListPaneOptions {
/**
* Sets the initial size of the pane. The value must be between the `min` and `max` properties.
*/
size?: string;
/**
* Sets the minimum size of the pane.
*/
min?: string;
/**
* Sets the maximum size of the pane.
*/
max?: string;
/**
* Specifies if the user can resize the pane.
*/
resizable?: boolean;
}
/**
* @hidden
*/
export declare const DEFAULT_TREELIST_PANE_SETTINGS: Readonly<{
collapsible: true;
collapsed: false;
}>;
/**
* @hidden
*/
export declare const DEFAULT_TIMELINE_PANE_SETTINGS: Readonly<{
collapsible: true;
collapsed: false;
size: "50%";
resizable: true;
}>;