neu-charts
Version:
neu-charts is a ngx-charts wrapper and charting framework for Angular 2 and beyond!.
14 lines (13 loc) • 442 B
TypeScript
import { OnInit, SimpleChanges, EventEmitter } from '@angular/core';
import { MapOptions } from '../../../utils/models/map-options';
export declare class HeatComponent implements OnInit {
data: any;
customOptions: MapOptions;
onSelect: EventEmitter<any>;
options: MapOptions;
colorScheme: any;
constructor();
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
mSelectedEvent(event: any): void;
}