UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

15 lines (13 loc) 454 B
import {Component} from '@angular/core'; @Component({ selector: 'nz-demo-progress-format', template: ` <nz-progress [ngModel]="75" [nzType]="'circle'" [nzFormat]="_formatOne"></nz-progress> <nz-progress [ngModel]="100" [nzType]="'circle'" [nzFormat]="_formatTwo"></nz-progress> `, styles : [] }) export class NzDemoProgressFormatComponent { _formatOne = percent => `${percent} Days`; _formatTwo = percent => `Done`; }