1.1.8 • Published 12 months ago

angular-progress-bar-sm v1.1.8

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Angular Progress Bar SM

Stylish animated progress bar

Installation

npm i angular-progress-bar-sm

Usage

Import

import { AngularProgressBarSmModule } from 'angular-progress-bar-sm';

To make it Animated:

Start passing dynamic values in your project & use progressValue = "progressValue"

 let intervalValue = setInterval(() => {
    this.progressValue += 1;

    if(this.progressValue === 100){
      this.progressValue = 0;
    }
  },100)

Fundamental Usage

<lib-angular-progress-bar-sm 
    [progressValue]="50" 
    [progressColor]="'#000'"    <!-- values '#000' or 'black' must be string -->
    [progressBarType]="'bar'"   <!-- values 'bar' or 'circle' must be string -->
/>

Fundamentals / Mandatories

Property/MethodTypeDescription
progressValuenumberPercentage of filled progress bar
progressBarColorstringProvide color single inverted comma's with hex color code or by default "#007bff" (Optional)
progressBarTypestringBy default: 'bar' or can be 'circle' (Optional)

Future Plans

  • Animated filled portion of progress bar.

Author

Suraj Motwani - Email: suraj.motwani1306@gmail.com

License

Angular Progress Bar SM is available under the MIT license. See the LICENSE file for more info.

1.1.8

12 months ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago