@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
23 lines (22 loc) • 1.35 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 { TemplateRef } from '@angular/core';
import * as i0 from "@angular/core";
/**
* Represents the template for the column menu in the Gantt. Provides an option for
* customizing the content of the column menu for all or for specific columns.
* To define the content template, nest an `<ng-template>` tag with the
* `kendoGanttColumnMenuTemplate` directive inside the `<kendo-gantt-column>` component.
*
* The column menu service and the current column are available as context variables:
* - `service`—Represents the ColumnMenuService.
* - `column`—Represents the Gantt column.
*/
export declare class ColumnMenuTemplateDirective {
templateRef: TemplateRef<any>;
constructor(templateRef: TemplateRef<any>);
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuTemplateDirective, [{ optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnMenuTemplateDirective, "[kendoGanttColumnMenuTemplate]", never, {}, {}, never, never, true, never>;
}