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;
The following topics provide additional information related to this topic: