Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MinorTickmarkOptions.ShowTicksForMajor Property

Gets or sets a value indicating whether minor tickmarks should be visible at the positions of the corresponding major tickmarks.

Namespace: DevExpress.Xpf.Gauges

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

NuGet Package: DevExpress.Wpf.Gauges

#Declaration

public bool ShowTicksForMajor { get; set; }

#Property Value

Type Description
Boolean

true to display minor tickmarks at the major tickmark positions; otherwise false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ShowTicksForMajor
Scale
.MinorTickmarkOptions .ShowTicksForMajor

#Remarks

Usually major and minor tickmarks are alternately displayed on a scale and therefore, there is no need to show minor tickmarks at the major tickmark position. So, the ShowTicksForMajor property is set to false by default.

But in some cases, you may need to display both major and minor tickmarks for the same value (e.g. if major tickmarks aren’t hidden or if the TickmarkOptions.Offset property for major tickmarks differs from the corresponding property for minor tickmarks). In such situations, you are required to show minor tickmarks at the major tickmarks position. To achieve this, set the ShowTicksForMajor property to true.

The following images illustrate the ShowTicksForMajor property behavior.

ShowTicksForMajor = False ShowTicksForMajor = True
ShowTicksForMajor_False ShowTicksForMajor_True
See Also