@lxlib/chart
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
32 lines (31 loc) • 806 B
TypeScript
import { ElementRef, NgZone, OnChanges, OnDestroy, OnInit } from '@angular/core';
export interface G2MiniAreaData {
x: any;
y: any;
[key: string]: any;
}
export declare class G2MiniAreaComponent implements OnInit, OnChanges, OnDestroy {
private el;
private ngZone;
private chart;
delay: number;
color: string;
borderColor: string;
borderWidth: number;
height: number;
fit: boolean;
line: boolean;
animate: boolean;
xAxis: any;
yAxis: any;
padding: number | number[] | 'auto';
data: G2MiniAreaData[];
yTooltipSuffix: string;
tooltipType: 'mini' | 'default';
constructor(el: ElementRef, ngZone: NgZone);
private install;
private attachChart;
ngOnInit(): void;
ngOnChanges(): void;
ngOnDestroy(): void;
}