ngx-frappe-chart
Version:
A simple and easy to use angular wrapper on top of frappe for generating awesome graphs.
15 lines (14 loc) • 420 B
TypeScript
import { ElementRef } from '@angular/core';
import { OnChanges } from '@angular/core';
export declare class FrappeChartsHeatmapDirective implements OnChanges {
private el;
title?: string;
data: any;
countLabel?: string;
discreteDomains?: number;
colors?: string[5];
readonly type: string;
constructor(el: ElementRef);
ngOnChanges(): void;
getHeatmapInputs(): any;
}