Skip to main content
A newer version of this page is available. .

Scale.ShowLine Property

Indicates whether a line should be displayed on a scale.

Namespace: DevExpress.Xpf.Gauges

Assembly: DevExpress.Xpf.Gauges.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Gauges, DevExpress.Wpf.Gauges

Declaration

public DefaultBoolean ShowLine { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean enumeration value that specifies a line’s visibility on a scale.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

Set the ShowLine property value to either DefaultBoolean.True or DefaultBoolean.False to control the visibility of a line on a Circular or Linear scale.

Note that by default, the ShowLine property is set to DefaultBoolean.Default. This means that line visibility is defined by the current model of a gauge control, set by the CircularGaugeControl.Model or LinearGaugeControl.Model properties.

The table below illustrates the properties behavior.

ShowLine = True ShowLine = False
Scale_ShowLine-True Scale_ShowLine-False

For more information on scale lines, refer to the Line (Circular Scale) and Line (Linear Scale) documents.

See Also