Ngx-Bootstrap-ProgressBar
ngx-bootstrap 진행률 표시 줄 구성 요소는 유연한 표시 줄로 워크 플로의 진행률을 표시하는 진행률 구성 요소를 제공합니다.
ProgressbarComponent
선택자
progressbar
입력
animate − 부울, 참이면 진행률 표시 줄의 값 변경이 애니메이션됩니다.
max − 숫자, 진행 요소의 최대 총 값.
striped − 부울, 참이면 스트라이프 클래스가 적용됩니다.
type − ProgressbarType : 성공, 정보, 경고, 위험의 네 가지 지원되는 컨텍스트 클래스 중 하나를 제공합니다.
value− 숫자 | any [], 진행률 표시 줄의 현재 값. { "value": 15, "type": "info", "label": "15 %"}와 같은 개체의 수 또는 배열 일 수 있습니다.
예
진행률 표시 줄을 사용할 예정 이므로 ngx-bootstrap Popover 챕터에서 사용 되는 app.module.ts를 사용하도록 업데이트 해야합니다.ProgressbarModule 과 ProgressbarConfig.
ProgressbarModule 및 ProgressbarConfig를 사용하도록 app.module.ts를 업데이트합니다.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { BsDatepickerModule, BsDatepickerConfig } from 'ngx-bootstrap/datepicker';
import { BsDropdownModule,BsDropdownConfig } from 'ngx-bootstrap/dropdown';
import { PaginationModule,PaginationConfig } from 'ngx-bootstrap/pagination';
import { PopoverModule, PopoverConfig } from 'ngx-bootstrap/popover';
import { ProgressbarModule,ProgressbarConfig } from 'ngx-bootstrap/progressbar';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule,
PaginationModule,
PopoverModule,
ProgressbarModule
],
providers: [AlertConfig,
BsDatepickerConfig,
BsDropdownConfig,
BsModalService,
PaginationConfig,
ProgressbarConfig],
bootstrap: [AppComponent]
})
export class AppModule { }
모달을 사용하려면 test.component.html을 업데이트하십시오.
test.component.html
<div class="row">
<div class="col-sm-4">
<div class="mb-2">
<progressbar [value]="value"></progressbar>
</div>
</div>
<div class="col-sm-4">
<div class="mb-2">
<progressbar [value]="value" type="warning"
[striped]="true">{{value}}%</progressbar>
</div>
</div>
<div class="col-sm-4">
<div class="mb-2">
<progressbar [value]="value" type="danger"
[striped]="true" [animate]="true"
><i>{{value}} / {{max}}</i></progressbar>
</div>
</div>
</div>
해당 변수 및 메소드에 대한 test.component.ts를 업데이트하십시오.
test.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
max: number = 100;
value: number = 25;
constructor() {}
ngOnInit(): void {
}
}
구축 및 봉사
다음 명령을 실행하여 각도 서버를 시작하십시오.
ng serve
서버가 가동되고 실행되면. http : // localhost : 4200을 엽니 다.