Step slider
Step slider component.

Component properties
Slider start value (section Basic properties)
startValue
Slider start value (default empty). Feature availability depends on the license and may not be available in all deployments.
Step interval at which a value can be set on the slider (section Basic properties)
step
Step interval at which a value can be set on the slider (default value 100).
Slider minimum displayed value (section Basic properties)
minValue
Slider minimum value (default 0).
Slider maximum displayed value (section Basic properties)
maxValue
Slider maximum value (default 1000).
Graphical representation of the field (section Styling)
presentation
Graphical representation of the component (choose from values STANDARD - default and TILES). The value STANDARD specifies the standard look of the component, TILES is a presentation of the component in the form of tiles with a centered value. Feature availability depends on the license and may not be available in all deployments.
Predicted slider value on axis hover (section Styling)
showPredictionTooltip
Display of the predicted slider value when hovering over the slider axis (checked by default). Feature availability depends on the license and may not be available in all deployments.
Presentation in the tooltip of the value indicated by the slider (section Styling)
showTooltip
Display of the value indicated by the slider (checked by default). Feature availability depends on the license and may not be available in all deployments.
Text input suffix (section Other)
textInputSuffix
Value 'appended' to the end of the slider text field. Feature availability depends on the license and may not be available in all deployments.
Maximum value exceeded message (section Other)
minValueSuggest
Text displayed under the Step slider text field when the minimum value is exceeded. Feature availability depends on the license and may not be available in all deployments.
Minimum value exceeded message (section Other)
maxValueSuggest
Text displayed under the Step slider text field when the maximum value is exceeded. Feature availability depends on the license and may not be available in all deployments.
More information about component properties: Common component properties

Feed component with a service
The step slider component can be fed by the ServiceProxy service in one of two ways:
Feeding with a list of values
The feeding service should return data in the form of two lists in valuesDomain and visibleValuesDomain:
valuesDomain - a list containing the sorted domain of the component, specifying all numbers the slider can take as values, e.g.: [1, 2, 3, 4, 5]
visibleValuesDomain - a list containing binary flags indicating which values should have a visible label, e.g.: [true, false, true, false, true]
On a step slider fed this way, labels will be shown for values: 1, 3 and 5.
Feeding with min and max values
The feeding service should return data in the fields minValue and maxValue:
minValue - the component minimum value, e.g.: minValue=100
maxValue - the component maximum value, e.g.: maxValue=200
Optionally you can also provide value - the component start value.
Feeding the step slider component with min and max values does not allow hiding value labels (all labels will be visible).
Last updated
Was this helpful?
