ag-grid-enterprise
Version:
AG Grid Enterprise Features
9 lines (8 loc) • 456 B
TypeScript
import { AgCartesianAxisOptions, AgHistogramSeriesOptions } from "ag-charts-community";
import { ChartProxyParams, UpdateParams } from "../chartProxy";
import { CartesianChartProxy } from "./cartesianChartProxy";
export declare class HistogramChartProxy extends CartesianChartProxy {
constructor(params: ChartProxyParams);
getSeries(params: UpdateParams): AgHistogramSeriesOptions[];
getAxes(_params: UpdateParams): AgCartesianAxisOptions[];
}