Click here to Skip to main content
Click here to Skip to main content

Circular gauge custom control for Silverlight 3 and WPF

By , 22 Jul 2009
 

gauge_cb.png

Introduction

The Silverlight 3 SDK and toolkit includes more than a hundred controls but is missing a circular gauge control, so I decided to create one. My goal was to create a customizable gauge that is easy to use and also looks professional. You can see a live demo here.

Using the code

In this section, I will explain how you can use the gauge control in your application. The easiest way to get started would be to copy this template code snippet in your project after referencing CircularGauge.dll and the CircularGauge namespace.

<!--Black Gauge -->
<gauge:CircularGaugeControl x:Name="myGauge1" 
  Grid.Column="0" Grid.Row="0" 
  Radius="150" 
  ScaleRadius="110" 
  ScaleStartAngle="120" 
  ScaleSweepAngle="300"
  PointerLength="85" 
  PointerCapRadius="35" 
  MinValue="0" 
  MaxValue="1000" 
  MajorDivisionsCount="10" 
  MinorDivisionsCount="5" 
  CurrentValue="{Binding Score}"
  ImageSource="silverlightlogo.png"
  ImageSize="60,50"
  RangeIndicatorThickness="8"
  RangeIndicatorRadius="120"
  RangeIndicatorLightRadius="10"
  RangeIndicatorLightOffset="80"
  ScaleLabelRadius="90"
  ScaleLabelSize="40,20"
  ScaleLabelFontSize="10"
  ScaleLabelForeground="LightGray"
  MajorTickSize="10,3"
  MinorTickSize="3,1"
  MajorTickColor="LightGray"
  MinorTickColor="LightGray"
  ImageOffset="-50"
  GaugeBackgroundColor="Black"
  PointerThickness ="16"
  OptimalRangeStartValue="300"
  OptimalRangeEndValue="700" 
  DialTextOffset="40" 
  DialText="Black"
  DialTextColor="Black"> 
</gauge:CircularGaugeControl>

The CircularGauge control has several options to completely customize all its elements. Most of the property settings are intuitive to use, so I will only discuss a few here.

Properties Comments
Background Setting the background color would automatically create a gradient and glass effect using the set color as the base. This makes it very easy to drastically change the look.
ScaleRadius, ScaleLabelRadius, RangeIndicatorRadius These properties provide options to place the scale, range indicator, and scale labels anywhere within the gauge.
CurrentValue The CurrentValue property is a dependency property so you can data bind to it.
ImageOffset, DialTextOffset, RangeIndicatorLightOffset These properties control the placement of the image, dial text, and the range indicator light along the Y-axis with respect to the center of the gauge.
OptimalRangeStartValue, OptimalRangeEndValue These properties help define the recommended range of values. The range indicators are drawn based on these values. In addition to the range indicators, the RangeIndicatorLight also provides visual feedback using the same information. The colors representing these value zones can be customized using the BelowOptimalRangeColor, AboveOptimalRangeColor, and OptimalRangeColor values.

Creating a custom template

This is a look-less control, so all the details of appearance is described in the default style specified in generic.xaml. In case you would like to create a new control template, the gauge control expects the following elements in its control template:

Element Name Element Type
LayoutRoot Grid
Pointer Path
RangeIndicatorLight Ellipse
PointerCap Ellipse

You can find the complete markup for the default style in the generic.xaml file included in the source code.

Points of interest

This section outlines the main steps in creating this control. Most parts of the visual representation of the gauge control were drawn using Expression Blend. The container that contains all the elements of the gauge is a Grid. The gauge/rim, pointer cap, pointer, range indicator light, and the glass effect which is another ellipse with reduced opacity, were all drawn using Expression Blend 3. I drew the shapes and then template bound the height, width, and other attributes. Here is the markup for the pointer:

 <!-- Pointer -->
<Path x:Name="Pointer" Stroke="#FFE91C1C" StrokeThickness="2" 
  Width="{TemplateBinding PointerLength}" 
  Height="{TemplateBinding PointerThickness}" HorizontalAlignment="Center"
  Data="M1,1 L1,10 L156,6 z" Stretch="Fill" RenderTransformOrigin="0,0.5" 
  RenderTransform="{Binding RelativeSource={RelativeSource TemplatedParent}, 
  Path=PointerLength, Converter={StaticResource pointerCenterConverter}}">
<Path.Fill>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF890A0A" Offset="0.197"/>
<GradientStop Color="#FFC40808" Offset="1"/>
<GradientStop Color="#FFE32323" Offset="0.61"/>
</LinearGradientBrush>
</Path.Fill>

</Path>

All the items in the template that you would like to access in code would need to be named appropriately. This is the way to establish binding between the user interface and the control. We then override the OnApplyTemplate method to get access to the named elements in the UI.

Drawing the scale and range indicator

The elements which cannot be defined in the generic.xaml file are the scale and the range indicator which need to be drawn in code. The Major and Minor tick marks are just rectangles that have been rotated and moved using render transforms. Similar to the tick marks, the scale labels are text blocks that have been rotated and moved. In order to draw the scale, we need to compute the location of the points on the circumference of the scale circle. This can be computed using this formula:

gauge_formula4.png

Formula to find a point on the circumference, given an angle and a radius:

x = a + r * cos(θ)
y = b + r * sin(θ)

where:

  • r is the radius of the circle
  • (a,b) is the center of the circle
  • (x,y) is the point on the circumference
  • θ is the angle in degrees
  • radian = degree * π/180

Similar to drawing the scale, we use the same formula to compute the four points that comprise the range segment.

gauge_formula3.png

Animating the pointer

Finally, animating the pointer only involves creating a double animation and setting its target to the pointer's rotate transform angle.

void AnimatePointer(double oldcurrentvalueAngle, double newcurrentvalueAngle)
{
    if (pointer != null)
    {
        DoubleAnimation da = new DoubleAnimation();
        da.From = oldcurrentvalueAngle;
        da.To = newcurrentvalueAngle;

        double animDuration = Math.Abs(oldcurrentvalueAngle - newcurrentvalueAngle) * 
                                       animatingSpeedFactor;
        da.Duration = new Duration(TimeSpan.FromMilliseconds(animDuration));

        Storyboard sb = new Storyboard();
        sb.Completed += new EventHandler(sb_Completed);
        sb.Children.Add(da);
        Storyboard.SetTarget(da, pointer);
        Storyboard.SetTargetProperty(da, new PropertyPath(
          "(Path.RenderTransform).(TransformGroup.Children)[0].(RotateTransform.Angle)"));

        if (newcurrentvalueAngle != oldcurrentvalueAngle)
        {
            sb.Begin();
        }
    }
}

WPF version

Porting to WPF was very easy, all I had to do was create a WPF custom control project and move the code from the Silverlight version, and everything worked without any changes.

Conclusion

This code is licensed under the Free BSD license, so feel free to use in commercial applications. I hope this gauge is useful, and would really appreciate any comments/feedback.

History

  • Version 1.0 - 07/22/2009.
  • WPF version updated - 07/28/2009.

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

EvelynT
Web Developer
United States United States
Member
I have worked mainly with ASP.NET but also have exposure to Windows forms, WPF and Silverlight. I also enjoy developing user interfaces using Expression Blend.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThank you Pinmemberhossein bakhtiari27 Mar '13 - 10:01 
Questionvery nice PinmemberCIDev26 Mar '13 - 10:59 
Questionhi thanks for your sharing but i have a question Pinmembermistergamer26 Nov '12 - 2:57 
QuestionSetting StartValue for the Pointer PinmemberBullimann15 Jul '12 - 20:27 
Questionbinding with Min/Max ? Pinmemberpourheidar22 Jun '12 - 4:02 
QuestionRefreshing the scale at runtime when changing max and min values. Pinmembermesta2 Mar '12 - 8:36 
BugBUGFIX: Incorrect Optimal Range drawing when (MaxValue - MinValue) < 1.0 PinmemberMember 815194614 Aug '11 - 5:47 
QuestionPlease help me !! Everything appears well but the pointer doesent work (stays at 0). Pinmemberradesi3 Aug '11 - 3:55 
QuestionCan use it while defined in XAML but i am unable to create and get to work this object programmatically in WPF VB, can you post an example of creation of the gauge enterely in VB.NEt ? Pinmemberradesi1 Aug '11 - 9:14 
QuestionExcellent , thanks for sharing Pinmemberradesi1 Aug '11 - 4:47 
GeneralSilverlight 4 PinmemberCodeJerry3 Jun '11 - 2:01 
GeneralRange PinmemberAshishCodeProject_Singhal31 May '11 - 3:34 
QuestionSpliting the Scale PinmemberMember 775974222 Mar '11 - 16:22 
GeneralChanging MaxValue, OptimalRangeStartValue and OptimalRangeEndValue on Runtime PinmemberSuperbase11 Mar '11 - 4:16 
Generalproblem with RangeIndicator Pinmemberwulouvre4 Mar '11 - 14:41 
Generalvery nice PinmemberBadea Florin1 Feb '11 - 9:24 
Generalvery good, thanks! I added a more property to control... PinmemberEnricoOliva23 Jan '11 - 22:49 
QuestionResizing while running application PinmemberRobert Veringa6 Jan '11 - 2:43 
GeneralThanks a lot! PinmemberRobert Veringa29 Nov '10 - 1:12 
QuestionBinding the MaxValue Pinmemberpadawandamien13 Oct '10 - 3:11 
GeneralThanks! Pinmembermktschudi15 Aug '10 - 10:28 
GeneralStandalone usage PinmemberJamieMeyer0110 Aug '10 - 11:51 
GeneralCannot find CircularGauge.dll PinmemberCataliz3er1 Jun '10 - 11:29 
QuestionHow do I make this dial as hyperlink Pinmemberdtvravi20 May '10 - 3:47 
GeneralThanks and ... PinmemberJerry Evans11 Feb '10 - 15:06 
Generalbinding to CurrentValue Pinmembermaarten77231 Jan '10 - 22:51 
GeneralSizing Gauge Pinmembercanard_16 Jan '10 - 2:00 
Generalproblem with RangeIndicator Pinmember_dros12 Jan '10 - 4:19 
QuestionHow can we support binding with Min/Max and OptimalRange values? Pinmemberakjoshi5 Jan '10 - 23:17 
GeneralHigh CPU usage PinmemberGraham Stevenson9 Dec '09 - 2:47 
GeneralVery good, thanks! PinmemberPatrick Doesburg6 Dec '09 - 23:02 
GeneralVery Good!! Pinmembergugaway2 Dec '09 - 10:35 
QuestionIt is possible to change the style during runtime from code bihind? Pinmembermbanchio2 Nov '09 - 6:02 
GeneralJust the thing I was looking for PinmembersushiBite20 Oct '09 - 23:05 
QuestionHow to add gage control from code behind? Pinmemberavtar11127 Sep '09 - 7:25 
GeneralUsing the control in Excel task pane Pinmembercohdr0129 Aug '09 - 0:49 
Questionhow to set the currentvalue in c# code Pinmemberrenuga529820 Aug '09 - 22:22 
GeneralCircular gauges Pinmemberlrbotch27 Jul '09 - 20:08 
GeneralReally good stuff PinmemberPatel Maulik27 Jul '09 - 19:32 
GeneralGood Stuff! Pinmemberddoutel22 Jul '09 - 5:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 22 Jul 2009
Article Copyright 2009 by EvelynT
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid