Method Overview
Name | Return Type | Summary | Object | |
---|---|---|---|---|
String | more details Formats a UNIX timestamp to a basic date string. | more details | utils | |
String | more details Formats a numeric value for display as a label based on the current locale. | more details | utils | |
Number[] | more details Computes and returns standard deviation values based on the given average and standard deviation. | more details | utils |
Method Details
-
formatDateLabel(value){String}Since: ArcGIS API for JavaScript 4.14
-
Formats a UNIX timestamp to a basic date string. This function is only intended for convenience in formatting thumb values in slider widgets and does not include additional formatting options.
Parameter:value NumberThe UNIX timestamp to convert to a formatted date string.
Returns:Type Description String Returns a formated date string.
-
formatNumberLabel(value){String}Since: ArcGIS API for JavaScript 4.19
-
Formats a numeric value for display as a label based on the current locale.
Parameter:value NumberThe value to convert to a formatted label.
Returns:Type Description String Returns a formatted label based on the current locale.
-
Computes and returns standard deviation values based on the given average and standard deviation.
Parameters:standardDeviation NumberThe standard deviation from the given
average
.average NumberThe average of the dataset from which to compute standard deviation values.
count NumberThe number of standard deviations from the mean to compute.
Returns:Type Description Number[] Returns the standard deviation values from the given average.