Web Components 방사형 게이지 개요

    Web Components 방사형 게이지 구성 요소는 미리 정의된 모양과 배율을 생성하기 위해 바늘, 눈금 표시, 범위, 레이블과 같은 다양한 시각적 요소를 제공합니다. IgcRadialGaugeComponent 에는 애니메이션 전환에 대한 지원도 내장되어 있습니다. 이 애니메이션은 transitionDuration 속성을 설정하여 쉽게 사용자 정의할 수 있습니다.

    Web Components Radial Gauge Example

    다음 샘플은 동일한 IgcRadialGaugeComponent에 여러 속성을 설정하여 이를 완전히 다른 방사형 게이지로 변환하는 방법을 보여줍니다.

    Dependencies

    게이지 구성요소를 설치할 때 코어 패키지도 설치해야 합니다.

    npm install --save igniteui-webcomponents-core
    npm install --save igniteui-webcomponents-gauges
    

    Component Modules

    IgcRadialGaugeComponent 에는 다음 모듈이 필요합니다.

    // Module Manager for registering the modules of the chart
    import { ModuleManager } from 'igniteui-webcomponents-core';
    // Radial Gauge Module
    import { IgcRadialGaugeModule } from 'igniteui-webcomponents-gauges';
    
    // register the modules
    ModuleManager.register(
        IgcRadialGaugeModule
    );
    

    Usage

    다음 코드는 바늘과 눈금의 세 가지 비교 범위를 포함하는 방사형 게이지를 만드는 방법을 보여줍니다.

      <igc-radial-gauge
        height="400px"
        width="400px"
        value="25"
        interval="5"
        minimum-value="0"
        maximum-value="100">
        <igc-radial-gauge-range
          start-value="0"
          end-value="30"
          brush="red">
        </igc-radial-gauge-range>
        <igc-radial-gauge-range
          start-value="30"
          end-value="60"
          brush="yellow">
        </igc-radial-gauge-range>
        <igc-radial-gauge-range
          start-value="60"
          end-value="100"
          brush="green">
        </igc-radial-gauge-range>
      </igc-radial-gauge>
    

    Backing

    방사형 게이지 구성 요소는 방사형 게이지의 배경 역할을 하는 눈금 뒤에 그려진 뒷면 모양과 함께 제공됩니다.

    뒷면 요소는 방사형 게이지 구성 요소의 배경과 테두리를 나타냅니다. 이는 항상 렌더링되는 첫 번째 요소이며 바늘, 레이블, 눈금 표시와 같은 나머지 모든 요소는 그 위에 오버레이됩니다.

    뒷면은 원형이거나 장착될 수 있습니다. 원형 모양은 360도 원형 게이지를 생성하는 반면, 맞춤 모양은 scaleStartAnglescaleEndAngle 속성을 둘러싸는 채워진 호 세그먼트를 생성합니다. 이는 backingShape 속성을 설정하여 설정할 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        backing-shape="Fitted"
        backing-brush="#fcfcfc"
        backing-outline="DodgerBlue"
        backing-oversweep="5"
        backing-corner-radius="10"
        backing-stroke-thickness="5"
        backing-outer-extent="0.8"
        backing-inner-extent="0.15"
        scale-start-angle="135" scale-end-angle="45"
        minimum-value="0" value="50"
        maximum-value="80" interval="10">
      </igc-radial-gauge>
    

    Scale

    눈금은 minimumValuemaximumValue 값을 제공하여 생성할 수 있는 게이지의 전체 값 범위를 강조하는 시각적 요소입니다. 백킹과 함께 게이지의 전체적인 모양을 정의합니다. scaleStartAnglescaleEndAngle 속성은 눈금의 호 경계를 정의합니다. 반면, scaleSweepDirection 속성은 눈금이 시계 방향 또는 시계 반대 방향으로 스윕할지 여부를 지정합니다. scaleBrush, scaleStartExtentscaleEndExtent 속성을 설정하여 배율의 모양을 사용자 정의할 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        scale-start-angle="135"
        scale-end-angle="45"
        scale-brush="DodgerBlue"
        scale-sweep-direction="Clockwise"
        scale-oversweep="1"
        scale-oversweep-shape="Fitted"
        scale-start-extent="0.45"
        scale-end-extent="0.575"
        minimum-value="0" value="50"
        maximum-value="80" interval="10">
      </igc-radial-gauge>
    

    Labels

    방사형 게이지 레이블은 minimumValuemaximumValue 속성 값 사이의 지정된 간격으로 숫자 값을 표시하는 시각적 요소입니다. labelExtent 속성을 분수로 설정하여 레이블 위치를 지정할 수 있습니다. 여기서 0은 게이지 중심을 나타내고 1은 게이지 뒷면의 외부 범위를 나타냅니다. 또한, fontBrushfont과 같은 다양한 스타일 속성을 설정하여 레이블을 사용자 정의할 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        label-extent="0.65"
        label-interval="10"
        font="11px Verdana"
        font-brush="DodgerBlue"
        minimum-value="0" value="50"
        maximum-value="100" interval="10">
      </igc-radial-gauge>
    

    Optical Scaling

    방사형 계기의 레이블과 제목은 배율을 변경할 수 있습니다. 이 기능을 사용하려면 먼저 true로 설정합니다 OpticalScalingEnabled. 그런 다음 레이블이 100% 광학 배율을 갖는 크기를 관리하는 항목을 설정할 OpticalScalingSize 수 있습니다. 레이블은 게이지의 크기가 클 때 더 큰 글꼴을 갖습니다. 예를 들어 이 속성이 500으로 설정되고 게이지 px 크기가 두 배가 될 때 레이블의 글꼴 크기가 200% 더 커집니다. 1000.

    Tick Marks

    눈금 표시는 방사형 게이지의 중심에서 방사되는 가는 선입니다. 눈금 표시에는 메이저와 마이너의 두 가지 유형이 있습니다. 주요 눈금 표시는 minimumValue 속성과 maximumValue 속성 사이의 interval으로 표시됩니다. 각 주요 눈금 사이에 표시되는 보조 눈금 수를 지정하려면 minorTickCount 속성을 사용하십시오. tickStartExtent, tickEndExtent, minorTickStartExtentminorTickEndExtent 속성에 분수(0과 1 사이)를 설정하여 눈금 표시의 길이를 제어할 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        tick-start-extent="0.45"
        tick-end-extent="0.575"
        tick-stroke-thickness="2"
        tick-brush="DodgerBlue"
        minor-tick-count="4"
        minor-tick-end-extent="0.5"
        minor-tick-start-extent="0.575"
        minor-tick-stroke-thickness="1"
        minor-tick-brush="DarkViolet"
        minimum-value="0" value="50"
        maximum-value="80" interval="10">
      </igc-radial-gauge>
    

    Ranges

    범위는 지정된 minimumValuemaximumValue 속성으로 묶인 연속 값 집합을 강조표시합니다. 시작 및 끝 값을 지정하여 방사형 게이지에 여러 범위를 추가할 수 있습니다. 각 범위에는 brushoutline과 같은 몇 가지 사용자 정의 속성이 있습니다. 또는 rangeBrushesrangeOutlines 속성을 범위의 색상 목록으로 설정할 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        minimum-value="0" value="50"
        maximum-value="80" interval="10"
        range-brushes ="red, yellow, green"
        range-outlines="red, yellow, green">
        <igc-radial-gauge-range
            start-value="5"  end-value="15" brush="red">
        </igc-radial-gauge-range>
        <igc-radial-gauge-range
          start-value="15"  end-value="35" brush="yellow">
        </igc-radial-gauge-range>
        <igc-radial-gauge-range
          start-value="35"  end-value="45" brush="green">
        </igc-radial-gauge-range>
      </igc-radial-gauge>
    

    Needle

    방사형 게이지 바늘은 게이지 설정 값을 나타내는 데 사용되는 시각적 요소입니다. 바늘은 미리 정의된 여러 모양 중 하나로 제공됩니다. 바늘은 게이지 중앙에 위치하는 피벗 모양을 가질 수 있습니다. 또한 피벗 모양은 미리 정의된 모양 중 하나를 사용합니다. 오버레이 또는 언더레이를 포함하는 피벗 모양에는 모양에 적용되는 별도의 피벗 브러시가 있을 수 있습니다.

    지원되는 바늘 모양과 캡은 needleShapeneedlePivotShape 속성을 사용하여 설정됩니다.

    isNeedleDraggingEnabled 속성을 사용하여 게이지의 대화형 모드를 활성화할 수 있으며 최종 사용자는 minimumValuemaximumValue 속성 사이의 바늘을 끌어 값을 변경할 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        is-needle-dragging-enabled="true"
        is-needle-dragging-constrained="true"
        needle-shape="NeedleWithBulb"
        needle-brush="DodgerBlue"
        needle-outline="DodgerBlue"
        needle-end-extent="0.475"
        needle-stroke-thickness="1"
        needle-pivot-shape="CircleOverlay"
        needle-pivot-brush="#9f9fa0"
        needle-pivot-outline="#9f9fa0"
        needle-pivot-width-ratio="0.2"
        needle-pivot-stroke-thickness="1"
        minimum-value="0" value="50"
        maximum-value="80" interval="10">
      </igc-radial-gauge>
    

    Summary

    편의를 위해 위의 모든 코드 조각은 아래의 하나의 코드 블록으로 결합되어 프로젝트에 쉽게 복사하고 모든 기능과 시각적 개체가 활성화된 방사형 게이지를 볼 수 있습니다.

      <igc-radial-gauge
        height="300px" width="300px"
        minimum-value="0"
        maximum-value="80"
        scale-start-angle="135"
        scale-end-angle="45"
        scale-brush="#c6c6c6"
        scale-sweep-direction="Clockwise"
        scale-oversweep="1"
        scale-oversweep-shape="Fitted"
        scale-start-extent="0.45"
        scale-end-extent="0.575"
    
        value="70"
        is-needle-dragging-enabled="true"
        is-needle-dragging-constrained="true"
        needle-shape="NeedleWithBulb"
        needle-brush="DodgerBlue"
        needle-outline="DodgerBlue"
        needle-end-extent="0.475"
        needle-stroke-thickness="1"
        needle-pivot-shape="CircleOverlay"
        needle-pivot-brush="#9f9fa0"
        needle-pivot-outline="#9f9fa0"
        needle-pivot-width-ratio="0.2"
        needle-pivot-stroke-thickness="1"
    
        interval="10"
        tick-start-extent="0.45"
        tick-end-extent="0.575"
        tick-stroke-thickness="2"
        tick-brush="Black"
        minor-tick-count="4"
        minor-tick-end-extent="0.5"
        minor-tick-start-extent="0.575"
        minor-tick-stroke-thickness="1"
        minor-tick-brush="Black"
    
        label-extent="0.65"
        label-interval="10"
        font="11px Verdana"
        font-brush="Black"
    
        backing-shape="Fitted"
        backing-brush="#ededed"
        backing-outline="Gray"
        backing-oversweep="5"
        backing-corner-radius="10"
        backing-stroke-thickness="5"
        backing-outer-extent="0.8"
        backing-inner-extent="0.15"
    
        range-brushes ="#a4bd29, #F86232"
        range-outlines="#a4bd29, #F86232">
        <igc-radial-gauge-range
          start-value="20" end-value="40"
          inner-start-extent="0.45" inner-end-extent="0.45"
          outer-start-extent="0.57" outer-end-extent="0.57">
        </igc-radial-gauge-range>
        <igc-radial-gauge-range
          start-value="40" end-value="60"
          inner-start-extent="0.45" inner-end-extent="0.45"
          outer-start-extent="0.57" outer-end-extent="0.57">
        </igc-radial-gauge-range>
      </igc-radial-gauge>
    

    API References

    다음은 위 섹션에서 언급된 API 멤버 목록입니다.

    Additional Resources

    다음 주제에서 다른 유형의 게이지에 대한 자세한 정보를 찾을 수 있습니다.