types

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

HistogramBin

Type Definition
HistogramBin

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.

Properties
count Number

The number of values in a dataset that are contained between the indicated minValue and maxValue.

minValue Number

The minimum value (or bound) of the bin.

maxValue Number

The maximum value (or bound) of the bin.

HistogramResult

Type Definition
HistogramResult

The result returned from the histogram() method.

Properties

An array of objects representing each bin in the histogram.

minValue Number|null|undefined
optional

The minimum value returned by the field.

maxValue Number|null|undefined
optional

The maximum value returned by the field.

normalizationTotal Number|null|undefined
optional

The number used to normalize all values when percent-of-total is specified as the normalizationType.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.