@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular
26 lines (25 loc) • 813 B
TypeScript
import { OnChanges, ViewContainerRef, EventEmitter, SimpleChanges } from '@angular/core';
import { TooltipService } from '../tooltip';
export declare class ChartComponent implements OnChanges {
private vcr;
private tooltipService;
view: any;
showLegend: boolean;
legendOptions: any;
data: any;
legendData: any;
legendType: any;
colors: any;
activeEntries: any[];
animations: boolean;
legendLabelClick: EventEmitter<any>;
legendLabelActivate: EventEmitter<any>;
legendLabelDeactivate: EventEmitter<any>;
chartWidth: any;
title: any;
legendWidth: any;
constructor(vcr: ViewContainerRef, tooltipService: TooltipService);
ngOnChanges(changes: SimpleChanges): void;
update(): void;
getLegendType(): string;
}