当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS Histogram.barCreatedFunction用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/widgets/Histogram"], (Histogram) => { /* code goes here */ });

ESM: import Histogram from "@arcgis/core/widgets/Histogram";

类: esri/widgets/Histogram

继承: Histogram > Widget > Accessor

自从:用于 JavaScript 4.12 的 ArcGIS API

用法说明

Histogram.barCreatedFunction函数(或属性)的定义如下:

barCreatedFunction BarCreatedFunction


用于表示直方图箱的样式条的函数。这可用于为视图中具有相同颜色特征的 bin 着色,这些 bin 属于表示相同数据范围的 bin。

例子:

histogram.barCreatedFunction = function(index, element){
  let bin = histogram.bins[index];
  let midValue = ((bin.maxValue - bin.minValue) / 2) + bin.minValue;
  // colors the histogram bins with a custom function
  // (not defined here for brevity of the snippet) for interpolating
  // colors from data values to match the legend
  let color = getColorFromValue(midValue);
  element.setAttribute("fill", color.toHex());
};

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 Histogram.barCreatedFunction。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。