UNPKG

ag-grid-enterprise

Version:

AG Grid Enterprise Features

14 lines (13 loc) 483 B
import { MiniChartWithAxes } from "../miniChartWithAxes"; import { ChartType } from "ag-grid-community"; export interface ICoordinate { x: number; y: number; } export declare class MiniArea extends MiniChartWithAxes { static chartType: ChartType; private readonly areas; static readonly data: number[][]; constructor(container: HTMLElement, fills: string[], strokes: string[], data?: number[][]); updateColors(fills: string[], strokes: string[]): void; }