UNPKG

@progress/kendo-angular-gantt

Version:
49 lines (48 loc) 2.32 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 tooltip. * Place an `<ng-template>` tag with the `kendoGanttTaskTooltipTemplate` directive inside the `<kendo-gantt>` tag to set the template. * * The template context uses the related data item. * * @example * ```ts-preview * _@Component({ * selector: 'my-app', * template: ` * <kendo-gantt [kendoGanttHierarchyBinding]="data"> * <ng-template kendoGanttTaskTooltipTemplate let-dataItem> * <div [style]="'color: white; font-size: 8px;'"> * {{ dataItem.title }} - {{ dataItem.completionRatio * 100 }}% complete; * </div> * </ng-template> * </kendo-gantt> * ` * }) * class AppComponent { * public data: any[] = sampleTasks; * } * ``` */ export class GanttTaskTooltipTemplateDirective { templateRef; constructor(templateRef) { this.templateRef = templateRef; } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GanttTaskTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: GanttTaskTooltipTemplateDirective, isStandalone: true, selector: "[kendoGanttTaskTooltipTemplate]", ngImport: i0 }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GanttTaskTooltipTemplateDirective, decorators: [{ type: Directive, args: [{ selector: '[kendoGanttTaskTooltipTemplate]', standalone: true }] }], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{ type: Optional }] }] });