UNPKG

@progress/kendo-angular-gantt

Version:
34 lines (33 loc) 1.7 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Represents the footer cell template of the Gantt columns. * * Use this directive to customize the table footer cell for a column. * To define a footer template, nest an `<ng-template>` tag with the * [`kendoGanttFooterTemplate`](https://www.telerik.com/kendo-angular-ui/components/gantt/api/footertemplatedirective) directive inside the `<kendo-gantt-column>` tag. * * The template context provides: * * `column`&mdash;The current [`ColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/gantt/api/ganttcolumncomponent). * * `columnIndex`&mdash;The current column index. * * `field`&mdash;The name of the column field, if set. * * @example * ```html * <kendo-gantt-column> * <ng-template kendoGanttFooterTemplate let-column let-columnIndex="columnIndex" let-field="field"> * Footer for {{ field }} * </ng-template> * </kendo-gantt-column> * ``` */ export declare class FooterTemplateDirective { templateRef: TemplateRef<any>; constructor(templateRef: TemplateRef<any>); static ɵfac: i0.ɵɵFactoryDeclaration<FooterTemplateDirective, [{ optional: true; }]>; static ɵdir: i0.ɵɵDirectiveDeclaration<FooterTemplateDirective, "[kendoGanttFooterTemplate]", never, {}, {}, never, never, true, never>; }