Skip to main content

Enumeration: SliderStepIndicator

Defines the frequency of visual step indicators on slider widgets.

SliderStepIndicator controls how many markers or tick marks are displayed along the slider track to help users understand the available value increments. Step indicators provide visual guidance and improve the user experience when selecting from a range of values.

Enumeration Members

EVERY_10_STEPS

EVERY_10_STEPS: "EVERY_10_STEPS"

Display an indicator for every 10th step value.

Shows markers at every tenth selectable value. Suitable for sliders with many steps (100+) where only major milestones need visual markers.


EVERY_2_STEPS

EVERY_2_STEPS: "EVERY_2_STEPS"

Display an indicator for every 2nd step value.

Shows markers at every other selectable value. Provides good balance between visual guidance and clean appearance for moderate step counts.


EVERY_20_STEPS

EVERY_20_STEPS: "EVERY_20_STEPS"

Display an indicator for every 20th step value.

Shows markers at every twentieth selectable value. Best for sliders with very large ranges (200+ steps) where minimal visual guidance at key intervals is sufficient.


EVERY_3_STEPS

EVERY_3_STEPS: "EVERY_3_STEPS"

Display an indicator for every 3rd step value.

Shows markers at every third selectable value. Useful for sliders with 30-60 steps where full step indicators would be too dense.


EVERY_4_STEPS

EVERY_4_STEPS: "EVERY_4_STEPS"

Display an indicator for every 4th step value.

Shows markers at every fourth selectable value. Appropriate for sliders with 40-80 steps requiring moderate visual guidance.


EVERY_5_STEPS

EVERY_5_STEPS: "EVERY_5_STEPS"

Display an indicator for every 5th step value.

Shows markers at every fifth selectable value. Good for sliders with 50-100 steps where some visual reference is helpful without creating excessive clutter.


EVERY_STEP

EVERY_STEP: "EVERY_STEP"

Display an indicator for every single step value.

Shows a marker for each selectable value on the slider. Best used with sliders that have relatively few steps (typically under 20) to avoid visual overcrowding.


NONE

NONE: "NONE"

No step indicators are displayed on the slider track.

Provides a clean, minimal appearance suitable for sliders with many steps or when visual indicators would create clutter.