UNPKG

sryd-charts-enterprise

Version:

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

18 lines (17 loc) 998 B
import type { AgFunnelSeriesItemStylerParams, AgFunnelSeriesLabelFormatterParams, AgFunnelSeriesStyle, AgFunnelSeriesTooltipRendererParams, Styler, _ModuleSupport } from 'ag-charts-community'; import type { InternalAgColorType, InternalAgGradientColor, InternalAgPatternColor } from 'ag-charts-core'; interface FunnelSeriesLabel extends _ModuleSupport.Label<AgFunnelSeriesLabelFormatterParams> { } export interface BaseFunnelProperties<SeriesOptions extends object> extends _ModuleSupport.AbstractBarSeriesProperties<SeriesOptions> { stageKey: string; valueKey: string; valueName?: string; fills: InternalAgColorType[]; strokes: string[]; fillGradientDefaults: Required<InternalAgGradientColor>; fillPatternDefaults: Required<InternalAgPatternColor>; itemStyler?: Styler<AgFunnelSeriesItemStylerParams<unknown>, AgFunnelSeriesStyle>; label: FunnelSeriesLabel; tooltip: _ModuleSupport.SeriesTooltip<AgFunnelSeriesTooltipRendererParams<unknown>>; } export {};