MajorTickmarkOptions Class
Contains settings that define the layout and behavior of the major tickmarks along the scale.
Namespace: DevExpress.Xpf.Gauges
Assembly: DevExpress.Xpf.Gauges.v24.1.dll
NuGet Package: DevExpress.Wpf.Gauges
Declaration
Related API Members
The following members return MajorTickmarkOptions objects:
Remarks
The options provided by a MajorTickmarkOptions instance can be accessed via the Scale.MajorTickmarkOptions property of a Scale object.
To define the layout of the major tickmarks, use the MajorTickmarkOptions.ZIndex, TickmarkOptions.Offset, TickmarkOptions.FactorThickness and TickmarkOptions.FactorLength properties.
The behavior of the major tickmarks is set by the MajorTickmarkOptions.ShowFirst, MajorTickmarkOptions.ShowLast properties.
For more information on major tickmarks, refer to the Tickmarks (Circular Scale) and Tickmarks (Linear Scale) documents.
Example
This example demonstrates how to customize the tickmarks on a Circular scale.
<dxga:ArcScale.TickmarksPresentation>
<dxga:SmartTickmarksPresentation
MajorTickBrush="#FF7C8295" MinorTickBrush="#FF7C8295" />
</dxga:ArcScale.TickmarksPresentation>
<dxga:ArcScale.MajorTickmarkOptions>
<dxga:MajorTickmarkOptions Offset="-2" />
</dxga:ArcScale.MajorTickmarkOptions>
<dxga:ArcScale.MinorTickmarkOptions>
<dxga:MinorTickmarkOptions Offset="-2" />
</dxga:ArcScale.MinorTickmarkOptions>
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MajorTickmarkOptions class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.