Available in the Full Version

Radial Gauge - ASP.NET MVC

This example demonstrates how to render the igRadialGauge using the ASP.NET MVC helper.

This sample is designed for a larger screen size.

On mobile, try rotating your screen, view full size, or email to another device.

This helper sets the various options on the igRadialGauge control and renders the required HTML and JavaScript.

Code View

Copy to Clipboard
@using Infragistics.Web.Mvc

<!DOCTYPE html>

<html>
<head>
    <title></title>

    <!-- Ignite UI for jQuery Required Combined CSS Files -->
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" />
   
     <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>

    <!-- Ignite UI for jQuery Required Combined JavaScript Files -->
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.dv.js"></script>
</head>

 
<body>

   @(
    Html.Infragistics().RadialGauge()
            .ID("radialgauge")
            .Width("100%")
            .Height("500px")
            .BackingShape(RadialGaugeBackingShape.Circular)            
            .Value(2)
            .Interval(10)
            .LabelInterval(10)
            .LabelExtent(0.7)
            .MinimumValue(0)
            .MaximumValue(100)
            .ScaleEndAngle(55)
            .ScaleStartAngle(125)
            .ScaleStartExtent(0.49)
            .ScaleEndExtent(0.57)  
            .ScaleBrush("Gray") 
            .ScaleSweepDirection(SweepDirection.Clockwise)
            .CenterX(0.5)
            .CenterY(0.5)
            .TickStartExtent(0.50)
            .TickEndExtent(0.57)
            .TickStrokeThickness(3)
            .MinorTickStartExtent(0.57)
            .MinorTickEndExtent(0.54)
            .MinorTickStrokeThickness(1)
            .NeedleStartExtent(0)
            .NeedleEndExtent(0.48)
            .NeedleShape(RadialGaugeNeedleShape.Needle)
            .NeedlePivotShape(RadialGaugePivotShape.CircleOverlay)
            .TransitionDuration(0)
            
            .Ranges(r => 
                {
                    r.Range("range2")
                    .StartValue(70)
                    .EndValue(100)
                    .InnerStartExtent(0.5)
                    .InnerEndExtent(0.5)
                    .OuterStartExtent(0.61)
                    .OuterEndExtent(0.65)
                    .StrokeThickness(0.5);

                    r.Range("range3")
                    .StartValue(50)
                    .EndValue(70)
                    .InnerStartExtent(0.5)
                    .InnerEndExtent(0.5)
                    .OuterStartExtent(0.57)
                    .OuterEndExtent(0.61)
                    .StrokeThickness(0.5);
                })
            .Render()
            )
</body>
</html>