UNPKG

@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.

36 lines (35 loc) 2.22 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ConfigurationService } from '../common/configuration.service'; import { SettingsComponent } from '../common/settings.component'; import { SankeyNodeDefaults, SankeyOffset } from './api-types'; import { FocusHighlight } from '@progress/kendo-charts'; import * as i0 from "@angular/core"; /** * Represents the configuration options of the Sankey nodes * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)). */ export declare class SankeyNodesComponent extends SettingsComponent implements SankeyNodeDefaults { configurationService: ConfigurationService; /** * Sets the color type of the link. * Use `static` for static link color determined by the link's `color` option. * Use `source` for link color that matches the source node color. * Use `target` for link color that matches the target node color. * * @default 'static' */ colorType?: 'static' | 'source' | 'target'; color?: string; opacity?: number; offset?: SankeyOffset; padding?: number; width?: number; align?: 'stretch' | 'left' | 'right'; focusHighlight?: FocusHighlight; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration<SankeyNodesComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<SankeyNodesComponent, "kendo-sankey-nodes", never, { "colorType": { "alias": "colorType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "align": { "alias": "align"; "required": false; }; "focusHighlight": { "alias": "focusHighlight"; "required": false; }; }, {}, never, never, true, never>; }