UNPKG

@progress/kendo-angular-gantt

Version:
42 lines (41 loc) 2.29 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Directive, Optional, TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Defines a template for the entire task component. * Place an `<ng-template>` tag with the `kendoGanttTaskTemplate` directive inside the `<kendo-gantt>` tag to set the template. * * The template context uses the current data item. The following field is also available: * - `elementWidth`&mdash;The calculated width in pixels of the current task wrapper element, based on its start and end date. * Use `let-elementWidth="elementWidth"` to access it in the template. * This helps you render custom elements for task progress. * * @example * ```html * <kendo-gantt [kendoGanttHierarchyBinding]="data"> * <ng-template kendoGanttTaskTemplate let-dataItem let-elementWidth="elementWidth"> * {{ dataItem.title }} - {{ dataItem.completionRatio * 100 }}% complete * </ng-template> * </kendo-gantt> * ``` */ export class GanttTaskTemplateDirective { templateRef; constructor(templateRef) { this.templateRef = templateRef; } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GanttTaskTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: GanttTaskTemplateDirective, isStandalone: true, selector: "[kendoGanttTaskTemplate]", ngImport: i0 }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GanttTaskTemplateDirective, decorators: [{ type: Directive, args: [{ selector: '[kendoGanttTaskTemplate]', standalone: true }] }], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{ type: Optional }] }] });