Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.04 KB

File metadata and controls

49 lines (33 loc) · 1.04 KB

@acpaas-ui/ngx-progress-bar

This module provides a progress bar with a max value.

Usage

import { ProgressBarModule } from '@acpaas-ui/ngx-progress-bar';

Documentation

Visit our documentation site for full how-to docs and guidelines

Progress bar module

API

Name Default value Description
@Input() value: number; 0 The current value of the progress.
@Input() max: number; 0 The value when the progress is completed.

Example

import { ProgressBarModule } from '@acpaas-ui/ngx-progress-bar';

@NgModule({
    imports: [
        ProgressBarModule
    ]
});

export class AppModule {};
  public uploadProgress = 20;
  public maxValue = 100;
<aui-progress-bar [value]="uploadProgress" [max]="maxValue"></aui-progress-bar>

Contributing

Visit our Contribution Guidelines for more information on how to contribute.