This topic provides a conceptual overview of labels with the XamRadialGauge™ control. It describes the properties of the labels and also provides an example of how to configure the labels.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
The gauge labels are visual elements displaying numeric values at a specified interval on the scale.
The following image is a preview of the XamRadialGauge control displaying labels.
The following table summarizes the XamRadialGauge control’s label properties.
The following table summarizes the XamRadialGauge control’s label related events.
The following screenshot illustrates how the XamRadialGauge control renders with the label’s properties configured like this:
The following is the code for implementing this example
In XAML:
<XamRadialGauge x:Name="radialGauge"
LabelExtent="0.44"
LabelInterval="15"/>
In C#:
var radialGauge = new XamRadialGauge();
radialGauge.LabelExtent = 0.44;
radialGauge.LabelInterval = 15;
In Visual Basic:
Dim radialGauge As XamRadialGauge = New XamRadialGauge
radialGauge.LabelExtent = 0.44
radialGauge.LabelInterval = 15
The following table summarizes the XamRadialGauge control’s title properties.
|Topic|Purpose
| Adding XamRadialGauge |This topic explains using a code example how to add the XamRadialGauge™ control to a WPF application.
| Configuring the Background (XamRadialGauge) |This topic provides a conceptual overview of the XamRadialGauge™ control’s backing feature. It describes the properties of the backing area and provides an example of its implementation.
| Configuring Optical Scaling (XamRadialGauge) |This topic provides a conceptual overview of labels with the XamRadialGauge™ control. It describes the properties of the scaling and configure the settings.
| Configuring Needles (XamRadialGauge) |This topic provides a conceptual overview of needles with the XamRadialGauge™ control. It describes the properties of the needles and also provides an example of how to configure them.
| Configuring Ranges (XamRadialGauge) |This topic provides a conceptual overview of the XamRadialGauge™ control’s ranges. It describes the properties of the ranges and provides an example of how to add ranges to the radial gauge.
| Configuring the Scale (XamRadialGauge) |This topic provides a conceptual overview of the XamRadialGauge™ control’s scale. It describes the properties of the scale and also provides an example of how to implement it.
| Configuring the Tick Marks (XamRadialGauge) |This topic provides a conceptual overview of tick marks with the XamRadialGauge™ control. It describes the tick marks’ properties and provides an example of how to implement them.