/**----------------------------------------------------------------------------------------- * 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"; /** * Selects a [template](link:site.data.urls.angular['templatesyntax']) * within the `` component for the * [series tooltip](https://www.telerik.com/kendo-angular-ui/components/charts/sankey/elements/tooltip#specifying-a-node-tooltip-template). * The following context fields are frequently utilized: * - `let-color="color"`—The node color. * - `let-label="label"`—The node label data. * - `let-value="value"`—The node value. * Refer to the [`SankeyNodeTooltipTemplateContext`](https://www.telerik.com/kendo-angular-ui/components/charts/api/sankeynodetooltiptemplatecontext) for the full list of available fields. * * @example * ```ts * import { Component } from '@angular/core'; * import { SankeyData } from '@progress/kendo-angular-charts'; * * _@Component({ * selector: 'my-app', * template: ` * * * {{ label.text }}: {{ value }} * * * `, * }) * export class AppComponent { * public data: SankeyData = { * nodes: [ * { id: 1, label: { text: 'Linux' } }, * { id: 0, label: { text: 'iOS'} }, * { id: 2, label: { text: 'Mobile' } }, * { id: 3, label: { text: 'Desktop' } }, * ], * links: [ * { sourceId: 0, targetId: 2, value: 1 }, * { sourceId: 1, targetId: 2, value: 2 }, * { sourceId: 1, targetId: 3, value: 3 }, * ], * }; * } * * ``` */ export declare class SankeyNodeTooltipTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }