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.

22 lines (21 loc) 1.35 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SankeyData, SankeyExportVisualOptions, SankeyHorizontalMargin, SankeyLabel, SankeyLabelDefaults, SankeyLegendItem, SankeyLink, SankeyLinkDataItem, SankeyLinkDefaults, SankeyLinkHighlight, SankeyNode, SankeyNodeDataItem, SankeyNodeDefaults, SankeyOffset, SankeyOptions, SankeyTooltip } from '@progress/kendo-charts'; import { Legend, Title } from '../../common/property-types'; export { SankeyData, SankeyExportVisualOptions, SankeyHorizontalMargin, SankeyLabel, SankeyLabelDefaults, SankeyLegendItem, SankeyLink, SankeyLinkDataItem, SankeyLinkDefaults, SankeyLinkHighlight, SankeyNode, SankeyNodeDataItem, SankeyNodeDefaults, SankeyOffset, SankeyOptions, SankeyTooltip }; /** * Represents the Sankey title options. */ export interface SankeyTitle extends Title { } /** * Represents the Sankey legend options. */ export interface SankeyLegend extends Omit<Legend, 'inactiveItems' | 'item'> { /** * The configuration of the legend items. */ item?: SankeyLegendItem; }