Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge
- Classes
- CircularGaugeFrame Class
- CircularLabelOptions Class
- CircularLineOptions Class
- CircularOptions Class
- CircularScale Class
- CircularTickOptions Class
- LinearGaugeFrame Class
- LinearLabelOptions Class
- LinearOptions Class
- LinearRangeBarOptions Class
- LinearScale Class
- LinearScaleBase Class
- LinearTickBar Class
- LinearTickOptions Class
- MajorCircularLabelOptions Class
- MajorCircularTickOptions Class
- MajorLinearLabelOptions Class
- MajorLinearTickOptions Class
- Marker Class
- MarkerCollection Class
- MinorCircularLabelOptions Class
- MinorCircularTickOptions Class
- MinorLinearLabelOptions Class
- MinorLinearTickOptions Class
- Needle Class
- Options Class
- ProgressIndicator Class
- Range Class
- RangeBarOptionsBase Class
- RangeCollection Class
- RollingRangeBarOptions Class
- RollingScale Class
- RollingTickBar Class
- ScaleBase Class
- TickBarBase Class
- TickBarBase Class
- TickBarBase Members
- TickBarBase Constructor
- Fields
- Properties
- ValueIndicator Class
- Enumerations
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
TicksDisplay Property |
Gets or sets a value that indicates whether to show major or minor tick marks. This is a dependency property.
Property Value
One of the TicksDisplay enumeration values. The the default is Major.
A TickBarBase can be used to display either major or minor ticks, but not both. In order to display both major and minor ticks, you must use two TickBarBase control.
When this property is set to Minor, it generates minor ticks at MinorInterval but skips at MajorInterval. This is necessary so that you can stack major and minor ticks together without having both major and minor ticks at the same spot.
For example, for the following LinearTickBar:
<eo:LinearTickBar MajorInterval="5" MinorInterval="1" TicksDisplay="Minor"> </eo:LinearTickBar>
It will display ticks at 1, 2, 3, 4, 6, 7, 8, 9, but skip 0, 5, 10.
Because of this, if you specify the same value for MajorInterval and MinorInterval, then it will not display any minor ticks because all the tick points will be considered major thus be skipped.