ArcScale.MajorTickCount Property
Gets or sets the total number of major tickmarks displayed on a circular scale.
Namespace: DevExpress.XtraGauges.Core.Model
Assembly: DevExpress.XtraGauges.v22.2.Core.dll
NuGet Package: DevExpress.Gauges.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
Int32 | 11 | An integer value that defines the total number of major tickmarks. |
Remarks
Use the MajorTickCount and ArcScale.MinorTickCount properties to specify the number of tickmarks shown on a circular scale. The appearance of major and minor tickmarks is specified by the ArcScale.MajorTickmark and ArcScale.MinorTickmark properties, correspondingly.
In the image below, MajorTickCount = 11, which generated 11 major tickmarks: for the 0, 10, 20, 30, 40, 50, 60, 70, 80, 90 and 100 values.
This means, for example, if the ArcScale.MinValue is set to 0 and ArcScale.MaxValue is set to 12 and you want to show a major tickmark (and a label) for each integer value, you should set the MajorTickCount property to 13.
Also note that if you don’t need to show the first or the last major tickmarks, or both - you can hide them by setting the ShowFirst and ShowLast properties of the ArcScale.MajorTickmark object to false.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MajorTickCount property.
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.