ag-charts-angular
Version:
<picture><source media="(prefers-color-scheme: dark)" srcset="./.github/banner-dark.png"><source media="(prefers-color-scheme: light)" srcset="./.github/banner-light.png"><img alt="AG Charts canvas-based charting trusted by the community, built for enterp
14 lines (13 loc) • 807 B
TypeScript
import { ElementRef, EventEmitter, NgZone } from '@angular/core';
import { AgChartInstance, AgChartOptions } from 'ag-charts-community';
import { AgChartsBase } from './ag-charts-base';
import * as i0 from "@angular/core";
export declare class AgCharts extends AgChartsBase<AgChartOptions> {
protected ngZone: NgZone;
options: AgChartOptions;
onChartReady: EventEmitter<AgChartInstance>;
constructor(elementDef: ElementRef, ngZone: NgZone);
protected createChart(options: AgChartOptions): AgChartInstance<AgChartOptions>;
static ɵfac: i0.ɵɵFactoryDeclaration<AgCharts, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AgCharts, "ag-charts", never, { "options": { "alias": "options"; "required": false; }; }, { "onChartReady": "onChartReady"; }, never, never, true, never>;
}