ClassedColorSliderViewModel

require(["esri/widgets/smartMapping/ClassedColorSlider/ClassedColorSliderViewModel"], function(ClassedColorSliderVM) { /* code goes here */ });
Class: esri/widgets/smartMapping/ClassedColorSlider/ClassedColorSliderViewModel
Inheritance: ClassedColorSliderViewModel SmartMappingSliderViewModel SliderViewModel Accessor
Since: ArcGIS API for JavaScript 4.12

Provides the logic for the ClassedColorSlider widget.

See also:

Constructors

new ClassedColorSliderViewModel(properties)
Parameter:
properties Object
optional

See the properties for a list of all the properties that may be passed into the constructor.

Property Overview

Any properties can be set, retrieved or listened to. See the Working with Properties topic.
NameTypeSummaryClass
Object[]

An array of class breaks with associated colors.

more details
more detailsClassedColorSliderViewModel
String

The name of the class.

more details
more detailsAccessor
LabelFormatter

A function used to format user inputs.

more details
more detailsSliderViewModel
InputParser

Function used to parse slider inputs formatted by the inputFormatFunction.

more details
more detailsSliderViewModel
LabelFormatter

A function used to format labels.

more details
more detailsSliderViewModel
String[]

An array of strings associated with values generated using an internal label formatter or the values returned from labelFormatFunction.

more details
more detailsSmartMappingSliderViewModel
Number

The maximum value of the slider.

more details
more detailsClassedColorSliderViewModel
Number

The minimum value of the slider.

more details
more detailsClassedColorSliderViewModel
Number

Defines how slider values should be rounded.

more details
more detailsSliderViewModel
String

The state of the view model.

more details
more detailsSmartMappingSliderViewModel
Boolean

When false, the user can freely move any slider thumb to any position along the track.

more details
more detailsSliderViewModel
Number[]

The data values associated with the thumb locations of the slider.

more details
more detailsClassedColorSliderViewModel

Property Details

breaks Object[]

An array of class breaks with associated colors. The colors mapped to each break can be used to update the renderer of a layer. A minimum of two breaks must be provided to the slider.

Properties:
color Color

Features with values within the provided min and max will be rendered with this color.

max Number

The max value of the break. The max of each break should match the min value of the break directly above it.

min Number

The min value of the break. The min of each break should match the max value of the break directly below it.

Example:
slider.breaks = [{
  min: 0,
  max: 20,
  color: [ 0, 0, 30 ]
}, {
  min: 20,
  max: 40,
  color: [ 0, 0, 100 ]
}, {
  min: 40,
  max: 60,
  color: [ 0, 0, 180 ]
}, {
  min: 60,
  max: 80,
  color: [ 0, 0, 255 ]
}];
declaredClass Stringreadonly inherited

The name of the class. The declared class name is formatted as esri.folder.className.

inputFormatFunction LabelFormatter inherited

A function used to format user inputs. As opposed to labelFormatFunction, which formats thumb labels, the inputFormatFunction formats thumb values in the input element when the user begins to edit them.

The image below demonstrates how slider input values resemble corresponding slider values by default and won't match the formatting set in labelFormatFunction.

Slider without input formatter

If you want to format slider input values so they match thumb labels, you can pass the same function set in labelFormatFunction to inputFormatFunction for consistent formatting.

Slider with input formatter

However, if an inputFormatFunction is specified, you must also write a corresponding inputParseFunction to parse user inputs to understandable slider values. In most cases, if you specify an inputFormatFunction, you should set the labelFormatFunction to the same value for consistency between labels and inputs.

This property overrides the default input formatter, which formats by calling toString() on the input value.

See also:
Example:
// Formats the slider input to abbreviated numbers with units
// e.g. a thumb at position 1500 will render with an input label of 1.5k
slider.inputFormatFunction = function(value, type){
  if(value >= 1000000){
    return (value / 1000000).toPrecision(3) + "m"
  }
  if(value >= 100000){
    return (value / 1000).toPrecision(3) + "k"
  }
  if(value >= 1000){
    return (value / 1000).toPrecision(2) + "k"
  }
  return value.toFixed(0);
}
inputParseFunction InputParser inherited

Function used to parse slider inputs formatted by the inputFormatFunction. This property must be set if an inputFormatFunction is set. Otherwise the slider values will likely not update to their expected positions.

Overrides the default input parses, which is a parsed floating point number.

See also:
Example:
// Parses the slider input (a string value) to a number value understandable to the slider
// This assumes the slider was already configured with an inputFormatFunction
// For example, if the input is 1.5k this function will parse
// it to a value of 1500
slider.inputParseFunction = function(value, type, index){
  var charLength = value.length;
  var valuePrefix = parseFloat(value.substring(0,charLength-1));
  var finalChar = value.substring(charLength-1);

  if(parseFloat(finalChar) >= 0){
    return parseFloat(value);
  }
  if(finalChar === "k"){
    return valuePrefix * 1000;
  }
  if(finalChar === "m"){
    return valuePrefix * 1000000;
  }
  return value;
}
labelFormatFunction LabelFormatter inherited

A function used to format labels. Overrides the default label formatter.

By default labels are formatted in the following way:

  • When the data range is less than 10 ((max - min) < 10), labels are rounded based on the value set in the precision property.
  • When the data range is larger than 10, labels display with a precision of no more than two decimal places, though actual slider thumb values will maintain the precision specified in precision.

Use this property to override the behavior defined above.

Example:
// For thumb values, rounds each label to whole numbers.
// Note the actual value of the thumb continues to be stored
// based on the indicated data `precision` despite this formatting
sliderViewModel.labelFormatFunction = function(value, type) {
  return (type === "value") ? value.toFixed(0) : value;
}
labels String[]readonly inherited

An array of strings associated with values generated using an internal label formatter or the values returned from labelFormatFunction.

max Numberreadonly

The maximum value of the slider. This value is computed from the max value of the final break in breaks.

min Numberreadonly

The minimum value of the slider. This value is computed from the min value of the first break in breaks.

precision Number inherited

Defines how slider values should be rounded. This number indicates the number of decimal places slider values should round to when they have been moved.

This value also indicates the precision of thumb labels when the data range (max - min) is less than 10.

When the data range is larger than 10, labels display with a precision of no more than two decimal places, though actual slider thumb values will maintain the precision specified in this property.

For example, given the default precision of 4, and the following slider configuration, The label of the thumb will display two decimal places, but the precision of the actual thumb value will not be lost even when the user slides or moves the thumb.

const slider = new SliderVM({
  min: 20,
  max: 100,  // data range of 80
  values: [50.4331],
  // thumb label will display 50.43
  // thumb value will maintain precision, so
  // value will remain at 50.4331
});

If the user manually enters a value that has a higher precision than what's indicated by this property, the precision of that thumb value will be maintained until the thumb is moved by the user. At that point, the value will be rounded according to the indicated precision.

If thumb labels aren't visible, they must be enabled with labelInputsEnabled.

Keep in mind this property rounds thumb values and shouldn't be used exclusively for formatting purposes. To format thumb labels, use the labelFormatFunction property.

Default Value:4
Example:
sliderViewModel.precision = 7;
state Stringreadonly inherited

The state of the view model.

Possible Values:"ready"|"disabled"

thumbsConstrained Boolean inherited

When false, the user can freely move any slider thumb to any position along the track. By default, a thumb's position is constrained to the positions of neighboring thumbs so you cannot move one thumb past another. Set this property to false to disable this constraining behavior.

Default Value:true
Example:
// allows the user to freely move slider
// thumbs to any position along the track
slider.viewModel.thumbsConstrained = false;
values Number[]readonly

The data values associated with the thumb locations of the slider. These are positioned based on the provided breaks.

Method Overview

NameReturn TypeSummaryClass
String

The default input format function available for use as a fallback in custom formatting implementations.

more details
more detailsSliderViewModel
Number

The default input parsing function available for use as a fallback in custom parsing implementations.

more details
more detailsSliderViewModel
String

The default label format function, available for use as a fallback in custom formatting implementations.

more details
more detailsSliderViewModel
Boolean

Emits an event on the instance.

more details
more detailsSliderViewModel
Object

Returns the min and max bounds for a 'value' at the provided index.

more details
more detailsSliderViewModel
String

Returns the formatted label for a provided value.

more details
more detailsSliderViewModel
StopInfo[]

Generates the color ramp rendered on the slider.

more details
more detailsClassedColorSliderViewModel

Gets the max value of the slider.

more details
more detailsSmartMappingSliderViewModel

Gets the min value of the slider.

more details
more detailsSmartMappingSliderViewModel
Boolean

Indicates whether there is an event listener on the instance that matches the provided event name.

more details
more detailsSliderViewModel
Object

Registers an event handler on the instance.

more details
more detailsSliderViewModel

Updates a thumb value based on the provided index.

more details
more detailsSliderViewModel
String

Rounds the given value to the number of decimal places specified in the precision property set on the view model.

more details
more detailsSliderViewModel

Method Details

defaultInputFormatFunction(value){String}inherited

The default input format function available for use as a fallback in custom formatting implementations.

Parameter:
value Number

The input value to format.

Returns:
TypeDescription
StringThe formatted input value.
defaultInputParseFunction(value){Number}inherited

The default input parsing function available for use as a fallback in custom parsing implementations.

Parameter:
value String

The thumb value to parse.

Returns:
TypeDescription
NumberThe parsed thumb value.
defaultLabelFormatFunction(value){String}inherited

The default label format function, available for use as a fallback in custom formatting implementations.

Parameter:
value Number

The thumb value to format.

Returns:
TypeDescription
StringThe formatted thumb value.
emit(type, event){Boolean}inherited

Emits an event on the instance. This method should only be used when creating subclasses of this class.

Parameters:
type String

The name of the event.

event Object
optional

The event payload.

Returns:
TypeDescription
Booleantrue if a listener was notified
getBoundsForValueAtIndex(index){Object}inherited

Returns the min and max bounds for a 'value' at the provided index. Also used internally to provide accessibility information via HTMLElement properties

Parameter:
index Number

The index of the associated value.

Returns:
TypeDescription
ObjectReturns a simple object with bound information.
getLabelForValue(value, type, index){String}inherited

Returns the formatted label for a provided value.

Parameters:
value Number

The value from which to retrieve a formatted label.

type String
optional

The label type.

Possible Values: min | max | tick | values

index Number
optional

The index of the label.

Returns:
TypeDescription
StringReturns the formatted label.
getStopInfo(){StopInfo[]}

Generates the color ramp rendered on the slider.

Returns:
TypeDescription
StopInfo[]
getUnzoomedMax()inherited

Gets the max value of the slider. This is useful for when the user wants to change the slider max when it is not visible in the zoomed state.

See also:
getUnzoomedMin()inherited

Gets the min value of the slider. This is useful for when the user wants to change the slider min when it is not visible in the zoomed state.

See also:
hasEventListener(type){Boolean}inherited

Indicates whether there is an event listener on the instance that matches the provided event name.

Parameter:
type String

The name of the event.

Returns:
TypeDescription
BooleanReturns true if the class supports the input event.
on(type, listener){Object}inherited

Registers an event handler on the instance. Call this method to hook an event with a listener.

Parameters:

A event type, or an array of event types, to listen for.

listener Function

The function to call when the event is fired.

Returns:
TypeDescription
ObjectReturns an event handler with a remove() method that can be called to stop listening for the event(s).
PropertyTypeDescription
removeFunctionWhen called, removes the listener from the event.
Example:
view.on("click", function(event){
  // event is the event handle returned after the event fires.
  console.log(event.mapPoint);
});
setValue(index, value)inherited

Updates a thumb value based on the provided index. The provided value must differ from the previous value. The provided value must also be between the min and max.

Parameters:
index Number

The index of the thumb value in the associated values array.

value Number

The new value to replace with the old value.

toPrecision(value){String}inherited
Since: ArcGIS API for JavaScript 4.14

Rounds the given value to the number of decimal places specified in the precision property set on the view model.

Parameter:
value Number

The thumb value to format.

Returns:
TypeDescription
StringThe input value rounded to the number of places specified in precision.
See also:

Type Definitions

StopInfo

The return object of the getStopInfo() method.

Properties:
color Color

The color of the break.

offset Number

The offset of the stop.

Event Overview

NameTypeSummaryClass
{oldValue: Number,type: "max",value: Number}

Fires when a user changes the max value of the slider.

more details
more detailsSliderViewModel
{oldValue: Number,type: "min",value: Number}

Fires when a user changes the min value of the slider.

more details
more detailsSliderViewModel

Event Details

max-changeinherited

Fires when a user changes the max value of the slider.

Properties:
oldValue Number

The former max value (or bound) of the slider.

type String

The type of the event.

The value is always "max".

value Number

The value of the max value (or bound) of the slider when the event is emitted.

min-changeinherited

Fires when a user changes the min value of the slider.

Properties:
oldValue Number

The former min value (or bound) of the slider.

type String

The type of the event.

The value is always "min".

value Number

The value of the min value (or bound) of the slider when the event is emitted.

API Reference search results

NameTypeModule
Loading...