Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface histogramHistogramParams

Hierarchy

  • Object
    • histogramHistogramParams

Index

Properties

Optional classificationMethod

classificationMethod: "standard-deviation" | "equal-interval" | "natural-breaks" | "quantile"

The method for classifying the data.

Read more...

constructor

constructor: Function

The initial value of Object.prototype.constructor is the standard built-in Object constructor.

Optional features

features: Graphic[]

A subset of features for which to generate the histogram.

Read more...

Optional field

field: string

The name of the numeric field for which the histogram will be generated.

Read more...

layer

The layer for which to generate a histogram.

Read more...

Optional maxValue

maxValue: number

The maximum bounding value for the histogram.

Read more...

Optional minValue

minValue: number

The minimum bounding value for the histogram.

Read more...

Optional normalizationField

normalizationField: string

The field by which to normalize the values returned from the given field.

Read more...

Optional normalizationTotal

normalizationTotal: number

Only applies if normalizationType is percent-of-total.

Read more...

Optional normalizationType

normalizationType: "field" | "log" | "percent-of-total" | "natural-log" | "square-root"

Determines how the provided field values will be normalized.

Read more...

Optional numBins

numBins: number

Indicates the number of classes to generate for the histogram.

Read more...

Optional signal

signal: AbortSignal

Allows for cancelable requests.

Read more...

Optional sqlExpression

sqlExpression: string

A SQL expression evaluating to a number.

Read more...

Optional sqlWhere

sqlWhere: string

A SQL where clause used to filter features for the statistics query.

Read more...

Optional standardDeviationInterval

standardDeviationInterval: number

When classificationMethod = "standard-deviation", this sets the interval at which each class break should be set (e.g.

Read more...

Optional valueExpression

valueExpression: string

An Arcade expression that returns a number.

Read more...

Optional view

view: View

A SceneView or MapView instance is required when a valueExpression is specified.

Read more...

Methods

hasOwnProperty

  • hasOwnProperty(v: PropertyKey): boolean
  • Determines whether an object has a property with the specified name.

    Parameters

    • v: PropertyKey

      A property name.

    Returns boolean

isPrototypeOf

  • isPrototypeOf(v: Object): boolean
  • Determines whether an object exists in another object's prototype chain.

    Parameters

    • v: Object

      Another object whose prototype chain is to be checked.

    Returns boolean

propertyIsEnumerable

  • propertyIsEnumerable(v: PropertyKey): boolean
  • Determines whether a specified property is enumerable.

    Parameters

    • v: PropertyKey

      A property name.

    Returns boolean

toLocaleString

  • toLocaleString(): string
  • Returns a date converted to a string using the current locale.

    Returns string

toString

  • toString(): string
  • Returns a string representation of an object.

    Returns string

valueOf

  • valueOf(): Object
  • Returns the primitive value of the specified object.

    Returns Object

Generated using TypeDoc