@acpaas-ui/ngx-progress-bar
v6.0.6
Published
This module provides a progress bar with a max value.
Downloads
104
Keywords
Readme
@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.