sliderMarker
Defines the options of the range selector slider markers.
When moving a slider, its marker displays the currently selected scale value. Use the sliderMarker object to set the required options for the range selector slider markers. For instance, you can format the markers' text, change the text font, or make the markers invisible.
color
Specifies the color of the slider markers.
This option supports the following colors.
- Hexadecimal colors
- RGB colors
- RGBA colors (not supported in Internet Explorer 8)
- Predefined/cross-browser color names
- Predefined SVG colors (not supported in Internet Explorer 8)
To set a custom color for the font used to display the slider markers' text, use the color property.
customizeText
Specifies a callback function that returns the text to be displayed by slider markers.
The text to be displayed by a slider marker.
When implementing a callback function for this property, use the value displayed in a slider marker. This value can be accessed using the fields of the object that is passed as the function's parameter. Alternatively, you can use the this object within the function. This object has the same structure as the object passed as a parameter.
font
Specifies font options for the text displayed by the range selector slider markers.
format
Specifies a format for the text displayed in slider markers.
Slider markers display the boundaries of the currently selected range. You can apply formatting to the text displayed by the slider markers by using one of the available formats.
invalidRangeColor
Specifies the color used for the slider marker text when the currently selected range does not match the minRange and maxRange values.
padding

Use the paddingTopBottom and paddingLeftRight options instead.
Specifies the empty space between the marker's border and the marker’s text.
paddingLeftRight
Specifies the empty space between the marker's left and right borders and the marker's text.
paddingTopBottom
Specifies the empty space between the marker's top and bottom borders and the marker's text.
placeholderSize

Use the placeholderHeight and indent options instead.
Specifies in pixels the height and width of the space reserved for the range selector slider markers.
You can set a numeric value to this property. This value will be used as a width and height of both the left and right slider markers. You can also set individual values for a width and height, and make them similar or different for the left and right slider markers. To do this, specify placeholderSize as an object. When setting this object's properties, take into account the font size of the text displayed in the slider markers.
You may need to set this property, when you need to know the exact size of the dxRangeSelector widget elements in vertical and horizontal directions. For instance, this may be required when displaying an image in the background in a stretched mode. To get the background height, subtract the scale's placeholder height and the slider markers' placeholder height from the dxRangeSelector's height. To get the background width, subtract the placeholder widths of slider markers from the dxRangeSelector's width.
precision
Specifies a precision for the formatted value displayed in slider markers.
This property value must be an integer indicating the number of digits to show in the values displayed by slider markers. This property value is used when markers display values in one of the following numeric formats: 'fixedPoint', 'exponential', 'currency' or 'percent'. To learn how to set a format for slider marker values, refer to the format property description.