ESM:
import * as types from "@arcgis/core/smartMapping/statistics/types.js";
CDN:
const types = await $arcgis.import("@arcgis/core/smartMapping/statistics/types.js");
Object:
@arcgis/core/smartMapping/statistics/types
Since: ArcGIS Maps SDK for JavaScript 4.33
A module for importing types used in smart mapping statistics modules.
Type Definitions
-
Represents the bin of a histogram. A bin consists of a minimum and a maximum value and a count. It indicates the number of values in a dataset that lie between the min and max values.
-
The result returned from the histogram() method.
- Properties
-
bins HistogramBin[]
An array of objects representing each bin in the histogram.
optional The minimum value returned by the field.
optional The maximum value returned by the field.
optional The number used to normalize all values when
percent-of-total
is specified as thenormalizationType
.