Skip to main content

BootstrapRangeSelectorScaleMarker.OnClientCustomizeLabelText Property

Specifies a callback function that returns the text to be displayed in scale markers.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DefaultValue("")]
public string OnClientCustomizeLabelText { get; set; }

Property Value

Type Default Description
String String.Empty

A string that represents either the name of a JavaScript function or the entire JavaScript function code.

Remarks

When implementing a callback function for this property, use the value to be displayed in the 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. The object has the following structure:

  • value - The row value.
  • valueText - The formatted value converted to a string.
See Also