Gauge Position

24 Jul 20181 minute to read

Semi-circular Gauge can be positioned within the canvas element which provides better appearance for the gauge in the canvas.

Positioning

Semi-circular Gauge can be positioned with the help of the attribute called gaugePosition. It is an enumerable value. You can position the gauge away from the corner with the help of the distanceFromCorner attribute.

The possible enum values for the gaugePosition are as follows:

  • TopLeft

  • TopCenter

  • TopRight

  • MiddleLeft

  • Center

  • MiddleRight

  • BottomLeft

  • BottomCenter

  • BottomRight

  • HTML
  • <ej-CircularGauge id="circularGauge1" backgroundColor="transparent" [width]=800 
             [height]=500 [radius]=120 [value]=60 [distanceFromCorner]=30 gaugePosition ="center"
             frame.frameType="halfcircle" [frame.halfCircleFrameStartAngle]=270 
             [frame.halfCircleFrameEndAngle]=90 >
         <e-scales>
              <e-scale [startAngle]=270 [sweepAngle]="180" [radius]="160" [showScaleBar]="true" 
                  [size]="1" [maximum]="120" [majorIntervalValue]="20" [minorIntervalValue]="10" 
                  [border.width]=0.5 >
              </e-scale>
           </e-scales>
      </ej-CircularGauge>

    Execute the above code to render the following output.