UNPKG

sryd-charts-enterprise

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

17 lines (16 loc) 769 B
import type { AgChordSeriesTooltipRendererParams, AgSankeySeriesTooltipRendererParams, _ModuleSupport } from 'ag-charts-community'; import type { InternalAgColorType } from 'ag-charts-core'; export interface FlowProportionSeriesProperties<SeriesOptions extends object> extends _ModuleSupport.SeriesProperties<SeriesOptions> { nodes: any[] | undefined; fromKey: string; toKey: string; idKey: string; idName: string | undefined; labelKey: string | undefined; labelName: string | undefined; sizeKey: string | undefined; sizeName: string | undefined; fills: InternalAgColorType[]; strokes: string[]; tooltip: _ModuleSupport.SeriesTooltip<AgChordSeriesTooltipRendererParams<any> & AgSankeySeriesTooltipRendererParams<any>>; }