Skip to main content
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.v24.2.dll

NuGet Package: DevExpress.Web

#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