Web Components 순환 진행 개요

    Ignite UI for Web Components 순환 진행률 표시기 구성 요소는 애플리케이션 프로세스가 변경됨에 따라 시각적 표시기를 제공합니다. 원형 표시기는 상태가 변경됨에 따라 모양을 업데이트합니다.

    Web Components Circular Progress Example

    Usage

    먼저 다음 명령을 실행하여 Ignite UI for Web Components 설치해야 합니다.

    npm install igniteui-webcomponents
    

    그런 다음 IgcCircularProgressComponent와 필요한 CSS를 가져오고 다음과 같이 해당 모듈을 등록해야 합니다.

    import {defineComponents, IgcCircularProgressComponent} from 'igniteui-webcomponents';
    import 'igniteui-webcomponents/themes/light/bootstrap.css';
    
    defineComponents(IgcCircularProgressComponent);
    

    Ignite UI for Web Components 에 대한 전체 소개는 시작 항목을 참조하세요.

    사용을 IgcCircularProgressComponent 시작하는 가장 간단한 방법은 다음과 같습니다.

    <igc-circular-progress value="100"></igc-circular-progress>
    

    Progress Types

    variant 속성을 사용하여 표시기 유형을 설정할 수 있습니다. 순환 진행률 표시기에는 기본 (기본값), 오류, 성공, 정보경고의 5가지 유형이 있습니다.

    <igc-circular-progress value="100" variant="success"></igc-circular-progress>
    

    Indeterminate Progress

    정확하게 결정되지 않은 프로세스를 추적하려는 경우 indeterminate 재산. 또한 Ignite UI for Web Components의 기본 레이블을 숨길 수 있습니다. IgcCircularProgressComponent 설정하여 hideLabel 속성을 표시하고 노출된 속성을 통해 진행률 표시기 기본 레이블을 사용자 정의합니다. labelFormat 재산.

    <igc-circular-progress value="100" indeterminate="true"></igc-circular-progress>
    

    다음 샘플은 위 구성을 보여줍니다.

    Animation Duration

    당신은 사용할 수 있습니다 animationDuration의 재산 IgcCircularProgressComponent 애니메이션 주기에 걸리는 시간을 밀리초 단위로 지정하는 구성요소입니다.

    <igc-circular-progress animation-duration="5000" indeterminate></igc-circular-progress>
    

    Gradient Progress

    단색 대신 색상 그라데이션을 사용하기 위해 진행률 표시줄을 사용자 정의하는 것은 노출된 gradient 슬롯과 그라데이션 중지점을 정의하는 IgcCircularGradientComponent 통해 수행할 수 있습니다.

    [!Note] For each IgcCircularGradientComponent defined as gradient slot of Ignite UI for Web Components IgcCircularProgressComponent a SVG stop element would be created. The values passed as color, offset and opacity would be set as stop-color, offset and stop-opacity of the SVG element without further validations.

    <igc-circular-progress>
        <igc-circular-gradient slot="gradient" offset="0%" color="#ff9a40"></igc-circular-gradient>
        <igc-circular-gradient slot="gradient" offset="50%" color="#1eccd4"></igc-circular-gradient>
        <igc-circular-gradient slot="gradient" offset="100%" color="#ff0079"></igc-circular-gradient>
    </igc-circular-progress>
    

    Styling

    Ignite UI for Web Components 거의 모든 내부 요소에 대한 CSS 부분을 노출합니다.

    다음 표에는 순환 진행에 의해 노출된 모든 CSS 부분이 나열되어 있습니다.

    이름 설명
    svg 진행 SVG 요소입니다.
    그래디언트_시작 진행 선형 그라데이션 시작 색상입니다.
    그래디언트_엔드 진행 선형 그라데이션 끝 색상입니다.
    진행률 링의 트랙 영역입니다.
    채우다 진행률 표시기 영역입니다.
    상표 진행률 레이블입니다.
    진행률 레이블 값입니다.
    불확정 진행 불확정 상태입니다.
    주요한 진행률 표시기 기본 상태입니다.
    위험 진행률 표시기 오류 상태입니다.
    경고 진행률 표시기 경고 상태입니다.
    정보 진행률 표시기 정보 상태입니다.
    성공 진행률 표시기 성공 상태입니다.

    API References

    Additional Resources