HeatmapColorStop
require(["esri/renderers/support/HeatmapColorStop"], function(HeatmapColorStop) { /* code goes here */ });
esri/renderers/support/HeatmapColorStop
This class is used to define an array of objects describing the HeatmapRenderer's color ramp and associated intensity value ratios. See HeatmapRenderer for examples of how this is used.
- See also:
Constructors
- new HeatmapColorStop(properties)
- Parameter:properties Objectoptional
See the properties for a list of all the properties that may be passed into the constructor.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
Color | The color to shade a given pixel based on its calculated pixel intensity ratio. more details | more details | HeatmapColorStop | |
String | The name of the class. more details | more details | Accessor | |
Number | The ratio of a pixel's intensity value to the minPixelIntensity of the renderer. more details | more details | HeatmapColorStop |
Property Details
The color to shade a given pixel based on its calculated pixel intensity ratio.
The name of the class. The declared class name is formatted as
esri.folder.className
.
- ratio Number
The ratio of a pixel's intensity value to the minPixelIntensity of the renderer. The ratio of each pixel is matched to the corresponding color.
Method Overview
Name | Return Type | Summary | Class | |
---|---|---|---|---|
HeatmapColorStop | Creates a deep clone of the color stop. more details | more details | HeatmapColorStop |
Method Details
- clone(){HeatmapColorStop}
Creates a deep clone of the color stop.
Returns:Type Description HeatmapColorStop A deep clone of the object that invoked this method.