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