Skip to main content
A newer version of this page is available. .
Tab

ASPxTrackBar.EqualTickMarks Property

Gets or sets a value that specifies whether or not all tick marks are of the same size.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(false)]
public bool EqualTickMarks { get; set; }

Property Value

Type Default Description
Boolean **false**

true to equalize tick marks; otherwise, false.

Remarks

This property is a wrapper of the TrackBarProperties.EqualTickMarks property.

Example

This example demonstrates how to set large and small ticks to equal size.

trackbar_example_equal_tickmarks

<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" 
        ScalePosition="LeftOrTop" EqualTickMarks="True" >
</dx:ASPxTrackBar>
See Also