UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

21 lines (20 loc) 589 B
import { SimpleChanges, EventEmitter, OnChanges } from '@angular/core'; export declare class HeatCellSeriesComponent implements OnChanges { data: any; colors: any; xScale: any; yScale: any; gradient: boolean; select: EventEmitter<{}>; cells: any[]; ngOnChanges(changes: SimpleChanges): void; update(): void; getCells(): any[]; getTooltipText({label, data, series}: { label: any; data: any; series: any; }): string; trackBy(index: any, item: any): string; onClick(value: any, label: any, series: any): void; }