All Projects → CharlesGrimont → angular-progress-bar

CharlesGrimont / angular-progress-bar

Licence: other
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to angular-progress-bar

ionic-modal-custom-transitions
Add Custom Transitions to Ionic Modals.
Stars: ✭ 22 (-15.38%)
Mutual labels:  ionic, angular2, angular4, ionic2, ionic3, angular5, ionic4
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+10596.15%)
Mutual labels:  angular2, angular4, angular5, angular6, angular7, angular8
Ionic2 Pokedex
🎮 Pokédex sample app developed with Ionic 2, Angular 2 and Apache Cordova. Using Pokéapi as source for data.
Stars: ✭ 143 (+450%)
Mutual labels:  ionic, angular2, angular4, ionic2, ionic3
Ng Http Loader
🍡 Smart angular HTTP interceptor - Intercepts automagically HTTP requests and shows a spinkit spinner / loader / progress bar
Stars: ✭ 327 (+1157.69%)
Mutual labels:  angular2, progress-bar, angular4, angular5, angular6
ionic-uuchat
基于ionic3,angular4的实时聊天app,兼容web端。该项目只是前端部分,所有数据需要请求后端服务器,需要配套express-uuchat-api使用。
Stars: ✭ 14 (-46.15%)
Mutual labels:  ionic, angular2, angular4, ionic2, ionic3
Ion2 Calendar
📅 A date picker components for ionic2 /ionic3 / ionic4
Stars: ✭ 537 (+1965.38%)
Mutual labels:  ionic, angular2, angular4, ionic2, ionic3
Ionic3 Components
A project full of ionic 3 components and samples - to make life easier :)
Stars: ✭ 1,689 (+6396.15%)
Mutual labels:  ionic, angular2, angular4, ionic2, ionic3
Angular-Movies
Angular Movies | TV Shows is a simple web app that consumes The Movie DB API - Angular 13 + Material Angular
Stars: ✭ 35 (+34.62%)
Mutual labels:  angular2, angular4, angular6, angular7, angular8
Nebular
💥 Customizable Angular UI Library based on Eva Design System 🌚✨Dark Mode
Stars: ✭ 7,368 (+28238.46%)
Mutual labels:  angular2, angular4, angular5, angular6, angular7
angularx-qrcode-sample-app
Angular5/6/7/8/9/10+ sample apps with working implementations of angularx-qrcode
Stars: ✭ 15 (-42.31%)
Mutual labels:  angular4, angular5, angular6, angular7, angular8
Drip Ionic3
「水滴打卡」App Open Source Code Base On Ionic V3 Framework
Stars: ✭ 74 (+184.62%)
Mutual labels:  angular2, angular4, ionic2, ionic3, angular5
Ionic Audio
An audio player for Ionic 3 and Angular 4. Works with HTML 5 audio or native audio using Cordova Media plugin.
Stars: ✭ 332 (+1176.92%)
Mutual labels:  angular2, angular4, ionic2, ionic3, angular5
Dianoia-app
Mobile (Ionic 3 - Angular 4) app about non-pharmaceutical activities and information for people with dementia.
Stars: ✭ 13 (-50%)
Mutual labels:  ionic, angular2, angular4, ionic2, ionic3
angular-rollbar-source-maps
Angular 2+ implementation to upload sourcemaps to Rollbar
Stars: ✭ 17 (-34.62%)
Mutual labels:  angular2, angular4, angular5, angular6, angular7
Ionic Boilerplate
✨ An Ionic Starter kit featuring Tests, E2E, Karma, Protractor, Jasmine, Istanbul, Gitlab CI, Automatic IPA and APK, TypeScript 2, TsLint, Codelyzer, Typedoc, Yarn, Rollup, and Webpack 2
Stars: ✭ 309 (+1088.46%)
Mutual labels:  ionic, ionic2, ionic3, angular5
Ng Lottie
Render After Effects animations on Angular based on lottie-web
Stars: ✭ 311 (+1096.15%)
Mutual labels:  ionic, angular2, angular4, ionic3
Angularx Qrcode
Angular4/5/6/7/8/9/10/11 QRCode generator component library for QR Codes (Quick Response) with AOT support based on node-qrcode
Stars: ✭ 281 (+980.77%)
Mutual labels:  ionic, angular4, angular5, angular6
Chihu2
ionic2-example <吃乎2>混合开发-美食app 🍜 ☕️ 🍦 (This is a support android and apple ionic2 case, a food app)
Stars: ✭ 124 (+376.92%)
Mutual labels:  ionic, angular4, ionic2, ionic3
Wooionic3
An eCommerce App for WooCommerce stores using Ionic 3.
Stars: ✭ 208 (+700%)
Mutual labels:  ionic, angular4, ionic2, ionic3
Ionic2 Rating
⭐️ Angular star rating bar. Built for Ionic 2+.
Stars: ✭ 177 (+580.77%)
Mutual labels:  ionic, angular2, angular4, ionic2

Angular Progress Bar

License NPM version

Toc

Introduction

Angular progress bar is a component available from Angular 2, 4, 5, 6, 7, 8, 9 and Ionic 2, 3, 4, and 5.

This component allow you to manage a progress visually

Online demo

You can find a demo at https://angular-progress-bar-demo.stackblitz.io

Appearance

Basic

Appearence

Grey

Appearence

Installation

Type the following command to install the package:

npm install angular-progress-bar@latest --save

Then you need to import it into your app modules

import {ProgressBarModule} from "angular-progress-bar"

@NgModule({
    imports: [
        ProgressBarModule
    ]
})

How to use

Classic way

By this way, progress property will be the value shown in the progress bar, and color property will be the color displayed

<progress-bar [progress]="100" [color]="'#488aff'">
</progress-bar>

Color degraded way

By this way, progress property will be the value shown in the progress bar, but color-degraded property must be binded ton an object.

This object, must contains a key value made be a string that represent a percent, and the value must be an hexadecimal color

in the example show below, from 0 to 15 percent the color will be #00cbcb then from 16 to 25 percent the color will be #f9c3d3 and then from 25 to the end the color will be #fd8c8e

<progress-bar [progress]="100" [color-degraded]="{'0': '#00cbcb',  '15': '#f9c3d3', '25': '#fd8c8e'}">
</progress-bar>

Disable display of percentage

You can disable display of percentage by using disable-percentage property

<progress-bar [progress]="80" [disable-percentage]="true">
</progress-bar>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].