@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
36 lines (35 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
*-------------------------------------------------------------------------------------------*/
import { HierarchyBindingDirective } from '@progress/kendo-angular-treelist';
import * as i0 from "@angular/core";
/**
* Binds the Gantt to a tree of objects.
*
* Use this directive to handle in-memory data operations such as sorting and filtering. [See example](slug:directives_databinding_gantt#binding-to-hierarchical-data).
*
* @example
* ```html
* <kendo-gantt
* [kendoGanttHierarchyBinding]="data"
* childrenField="subtasks"
* [dependencies]="dependencies">
* </kendo-gantt>
* ```
*
* @remarks
* Applied to: {@link GanttComponent}
*/
export declare class GanttHierarchyBindingDirective extends HierarchyBindingDirective {
/**
* Sets the array of data to populate the Gantt.
*/
data: any[];
/**
* @hidden
*/
set aggregate(value: any);
static ɵfac: i0.ɵɵFactoryDeclaration<GanttHierarchyBindingDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttHierarchyBindingDirective, "[kendoGanttHierarchyBinding]", ["kendoGanttHierarchyBinding"], { "data": { "alias": "kendoGanttHierarchyBinding"; "required": false; }; }, {}, never, never, true, never>;
}