ngx-dygraphs
Version:
Angular 2+ and 4+ library for support of dygraphs(<http://dygraphs.com>) charts.
23 lines (22 loc) • 683 B
TypeScript
import { ElementRef, OnInit, OnChanges, SimpleChanges } from '@angular/core';
import { DygraphOptions } from './dygraphOptions';
export declare class NgxDygraphsComponent implements OnInit, OnChanges {
options: DygraphOptions;
data: any;
noDataLabel: string;
chart: ElementRef;
loadingInProgress: boolean;
chartWidth: number;
chartHeight: number;
labels: string[];
dygraph: any;
ngOnInit(): void;
/**
* ngOnChanges
* @method ngOnChanges
* @return {void}
*/
ngOnChanges(changes: SimpleChanges): void;
changeVisibility(index: any, value: any): void;
private watchRangeSelector(graph);
}