UNPKG

ag-charts-enterprise

Version:

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

11 lines (10 loc) 1.04 kB
import { _ModuleSupport } from 'ag-charts-community'; import type { ExtremesAggregationFilter, ExtremesPartialAggregationResult, ScaleType } from 'ag-charts-core'; type ScopeProvider = _ModuleSupport.ScopeProvider; type ProcessedData = _ModuleSupport.ProcessedData<any>; type DataModel = _ModuleSupport.DataModel<any, any, any>; export type RangeBarSeriesDataAggregationFilter = ExtremesAggregationFilter; export type RangeBarPartialAggregationResult = ExtremesPartialAggregationResult; export declare function aggregateRangeBarDataFromDataModel(scale: ScaleType, dataModel: DataModel, processedData: ProcessedData, series: ScopeProvider, existingFilters?: RangeBarSeriesDataAggregationFilter[]): RangeBarSeriesDataAggregationFilter[] | undefined; export declare function aggregateRangeBarDataFromDataModelPartial(scale: ScaleType, dataModel: DataModel, processedData: ProcessedData, series: ScopeProvider, targetRange: number, existingFilters?: RangeBarSeriesDataAggregationFilter[]): RangeBarPartialAggregationResult | undefined; export {};