@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
34 lines (33 loc) • 1.81 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";
/**
* Selects a [template](link:site.data.urls.angular['templatesyntax'])
* within the `<kendo-sankey-tooltip>` component for the
* [links tooltip](slug:tooltip_sankey#toc-specifying-a-link-tooltip-template).
* The following context fields are frequently utilized:
* - `let-source="source"`—The link source data item..
* - `let-target="target"`—The link target data item.
* - `let-value="value"`—The link value.
* Refer to the [`SankeyLinkTooltipTemplateContext`](slug:api_charts_sankeylinktooltiptemplatecontext) for the full list of available fields.
*
* @example
* ```html
* <kendo-sankey [data]="data">
* <kendo-sankey-tooltip [followPointer]="true">
* <ng-template kendoSankeyLinkTooltipTemplate let-source="source" let-target="target" let-value="value">
* {{ source.label?.text }} - {{ target.label?.text }}: {{ value }}
* </ng-template>
* </kendo-sankey-tooltip>
* </kendo-sankey>
* ```
*/
export declare class SankeyLinkTooltipTemplateDirective {
templateRef: TemplateRef<any>;
constructor(templateRef: TemplateRef<any>);
static ɵfac: i0.ɵɵFactoryDeclaration<SankeyLinkTooltipTemplateDirective, [{ optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<SankeyLinkTooltipTemplateDirective, "[kendoSankeyLinkTooltipTemplate]", never, {}, {}, never, never, true, never>;
}