@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular2 and beyond!
26 lines (25 loc) • 788 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;
legendTitle: string;
colors: any;
activeEntries: any[];
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;
}