Frame Type

24 May 20191 minute to read

Full Circle

Full Circle frame lets the PivotGauge display in circular shape. Frame type can be set using the FrameType property. By default, the frame type is “FullCircle”.

  • CSHTML
  • @Html.EJ().Pivot().PivotGauge("PivotGauge1").Frame(frame=> { frame.FrameType(Frame.FullCircle) })

    Full circle frame in ASP NET MVC pivot gauge control

    Half Circle

    Half Circle frame lets the PivotGauge to display in semi-circular shape. For this, frame type needs to be set as “HalfCircle” within the FrameType property and need to set StartAngle and SweepAngle for the PivotGauge in the Scales property.

  • CSHTML
  • @Html.EJ().Pivot().PivotGauge("PivotGauge1").Frame(frame=>frame.FrameType(Frame.HalfCircle).HalfCircleFrameStartAngle(180).HalfCircleFrameEndAngle(360)).Scales(scale =>{ scale.StartAngle(180).SweepAngle(180).Add();})

    Half circle frame in ASP NET MVC pivot gauge control