mgx-circular-progress-bar
Version:
A library for circular progress bars components, an elegant way to rappresent your percentages.
21 lines (20 loc) • 582 B
TypeScript
import { OnChanges, ElementRef, TemplateRef } from '@angular/core';
export declare class MgxCircularProgressBarComponent implements OnChanges {
total: number;
barValue: number;
percentage: number;
contentTemplate: TemplateRef<any>;
diameter: number;
fontSize: number;
color: string;
bgColor: string;
radius: number;
private mgxPrefix;
percentual: number;
context: any;
circlePath: ElementRef;
constructor();
ngOnChanges(): void;
private showWarnings();
getFontSize(reducer?: number): string;
}