corelibraries-devexpress-dot-xtragauges-dot-core-dot-model-dot-imajortickmark-423bea8a.md
Gets or sets whether the tickmarks are visible.
Namespace : DevExpress.XtraGauges.Core.Model
Assembly : DevExpress.XtraGauges.v25.2.Core.dll
NuGet Package : DevExpress.Gauges.Core
bool ShowTick { get; set; }
Property ShowTick As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the tickmarks are visible; otherwise, false.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowTick 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.
reporting-wpf-advanced-gauge-customization/CS/MainWindow.xaml.cs#L67
linearScale.MinorTickmark.ShowTick = false;
linearScale.MajorTickmark.ShowTick = false;
linearScale.MajorTickmark.ShowText = false;
reporting-wpf-advanced-gauge-customization/VB/MainWindow.xaml.vb#L55
linearScale.MinorTickmark.ShowTick = False
linearScale.MajorTickmark.ShowTick = False
linearScale.MajorTickmark.ShowText = False
See Also