UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

23 lines (22 loc) 590 B
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; export declare class SeriesHorizontal implements OnChanges { bars: any; x: any; y: any; dims: any; type: string; series: any; xScale: any; yScale: any; colors: any; gradient: boolean; activeEntries: any[]; select: EventEmitter<{}>; activate: EventEmitter<{}>; deactivate: EventEmitter<{}>; ngOnChanges(changes: SimpleChanges): void; update(): void; isActive(entry: any): boolean; trackBy(index: any, bar: any): any; click(data: any): void; }