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

TickmarkOptions.FactorLength Property

Gets or sets a value by which the tickmarks’ length should be multiplied.

Namespace: DevExpress.Xpf.Gauges

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

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

Declaration

public double FactorLength { get; set; }

Property Value

Type Description
Double

A Double value that is the tickmarks’ length multiplier.

Property Paths

You can access this nested property as listed below:

Object Type Path to FactorLength
ArcScale
.MinorTickmarkOptions .FactorLength
LinearScale
.MinorTickmarkOptions .FactorLength
Scale
.MinorTickmarkOptions .FactorLength

Remarks

Use the FactorLength property to modify the length of major and minor tickmarks on a scale.

The following images illustrate the property behavior on Circular Scale:

  • for major tickmarks:

    FactorLength = 1 FactorLength = 1.5 FactorLength = 2
    MajorTickmarkOptions_FactorLength(Thickness)_1 MajorTickmarkOptions_FactorLength_1.5 MajorTickmarkOptions_FactorLength_2
  • for minor tickmarks:

    FactorLength = 1 FactorLength = 1.5 FactorLength = 2
    MajorTickmarkOptions_FactorLength(Thickness)_1 MinorTickmarkOptions_FactorLength_1.5 MinorTickmarkOptions_FactorLength_2

For more information on tickmarks, refer to the Tickmarks (Circular Scale) and Tickmarks (Linear Scale) documents.

See Also