ngx-frappe-chart
Version:
A simple and easy to use angular wrapper on top of frappe for generating awesome graphs.
12 lines (11 loc) • 368 B
TypeScript
import { BarOptions } from '../interfaces/percentage-bar-options.model';
import { GraphDataModel } from '../interfaces/graph-data.model';
export declare class FrappeChartsPercentageComponent {
data: GraphDataModel;
title?: string;
colors?: string[];
height?: number;
type?: string;
maxSlices?: number;
barOptions?: BarOptions;
}