Version

Configuring the Ranges (UltraLinearGauge)

Purpose

This topic explains, with code examples, how to configure ranges in the UltraLinearGauge™ control. This includes the number of ranges and their positions, lengths, widths, and formatting.

Required background

The following topics are prerequisites to understanding this topic:

Topic Purpose

This topic provides conceptual information about the UltraLinearGauge control including its main features, minimum requirements, and user functionality.

Configuring Comparative Ranges

Comparative ranges configuration summary

The UltraLinearGauge control supports multiple comparative ranges through populating its Ranges collection.

XamLinearGauge Overview 11.png

Each range can be configured individually by specifying its starting and ending value (in the measures of the scale), fill color, and border thickness and color. The size of a comparative range in the across-the-scale is configurable by adjusting its inner and outer margins.

Comparative ranges configuration summary chart

The following table explains briefly the configurable aspects of UltraLinearGauge control’s comparative ranges and maps them to properties that configure them.

Configurable aspects Property Default value

Number (of ranges in the graph)

Not set

Length, width, and position

Not set

Not set

Not set

Not set

Not set

Not set

Fill color

Defined in the default theme

Border color

Defined in the default theme

Border thickness

1.0

Note
Note:

If you do not explicitly provide values for the Brush and Outline properties for each range, the values are retrieved from the values of UltraLinearGauge ’s RangeBrushes and RangeOutlines collections. They can also be used to predefine a set of brushes to be used consecutively for setting each range’s color or outline fill.

Property settings

The following table maps the desired behavior to its respective property settings.

In order to configure: Details Use this property: And set it to:

Range start

Position on the scale at which the range begins

The desired value (in the measures of the scale)

Range end

Position on the scale at which the range ends

The desired value (in the measures of the scale)

Inner vertex of the starting edge of the range

The position of the inner vertex of the starting edge across the scale relative to the edge of the Reserved area.

(Inner vertex is the point of the starting edge that is the closest to the edge of the Reserved area.)

The desired value as a relative part of the height/width of the Graph area depending on the orientation (horizontal / vertical) presented as a fraction of 1 (e.g. _0.2 )

Inner vertex of the ending edge of the range

The position of the inner vertex of the ending edge across the scale relative to the edge of the Reserved area

The desired value as a relative part of the height/width of the Graph area depending on the orientation (horizontal / vertical) presented as a fraction of 1 (e.g. 0.3 )

Outer vertex of the starting edge of the range

The position of the outer vertex of the starting edge across the scale relative to the edge of the Reserved area.

(Outer vertex is the point of the starting edge that is the closest to the edge of the Reserved area)

The desired value as a relative part of the height/width of the Graph area depending on the orientation (horizontal / vertical) presented as a fraction of 1 (e.g. 0.7 )

Outer vertex of the ending edge of the range

The position of the outer vertex of the ending edge across the scale relative to the edge of the Reserved area

The desired value as a relative part of the height/width of the Graph area depending on the orientation (horizontal / vertical) presented as a fraction of 1 (e.g. 0.8 )

Fill color

Fill color of the range

The desired color

Border thickness

Thickness of the range’s border

The desired value in pixels

Border color

Color of the range’s border

The desired color

Example

The screenshot below demonstrates how a comparative range added to the UltraLinearGauge looks as a result of the following settings:

Property Value

“Green”

“6”

“89”

“0.5”

“0.5”

“0.8”

“0.8”

“Black”

XamLinearGauge Configuring Ranges 1 17 1.png

Following is the code that implements this example.

In C#:

var range1 = new LinearGraphRange();
range1.Brush = new SolidColorBrush(Color.FromArgb(0, 255, 0));
range1.Caption = "range1";
range1.StartValue = 6;
range1.EndValue = 89;
range1.InnerEndExtent = .5;
range1.InnerStartExtent = .5;
range1.OuterEndExtent = .8;
range1.OuterStartExtent = .8;
range1.Outline = new SolidColorBrush(Color.FromArgb(0, 0, 0));

In Visual Basic:

Dim range1 As New LinearGraphRange
 With range1
      .Brush = New SolidColorBrush(Color.FromArgb(0, 255, 0))
      .Caption = "range1"
      .StartValue = "6"
      .EndValue = "89"
      .InnerEndExtent = ".5"
      .InnerStartExtent = ".5"
      .OuterEndExtent = ".8"
      .OuterStartExtent = ".8"
      .Outline = New SolidColorBrush(Color.FromArgb(0, 0, 0))
 End With

Related Content

The following topics provide additional information related to this topic.

Topic Purpose

This topic explains, with examples, how to configure the scale of the UltraLinearGauge control. This includes positioning the scale inside the control and configuring the scale tick marks and labels.

This topic explains, with code examples, how to configure the needle of the UltraLinearGauge control. This includes the needle’s value, width, and formatting.

This topic explains, with code examples, how to configure a background for the linear gauge. This includes setting the background’s size, position, color, and border.