neu-charts
Version:
neu-charts is a ngx-charts wrapper and charting framework for Angular 2 and beyond!.
12 lines (11 loc) • 311 B
TypeScript
import { Options } from "./options";
/**
* Pie chart options
* @author Prasanth Venkatesan
*/
export declare class PieOptions extends Options {
showLabels: boolean;
explodeSlices: boolean;
doughnut: boolean;
constructor(showLegend?: boolean, showLabels?: boolean, explodeSlices?: boolean);
}