當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS SizeSlider.labelFormatFunction用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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

ESM: import SizeSlider from "@arcgis/core/widgets/smartMapping/SizeSlider";

類: esri/widgets/smartMapping/SizeSlider

繼承: SizeSlider > SmartMappingSliderBase > Widget > Accessor

自從:用於 JavaScript 4.12 的 ArcGIS API

用法說明

SizeSlider.labelFormatFunction函數(或屬性)的定義如下:

labelFormatFunction LabelFormatter inherited


Slider.labelFormatFunction 的修改版本,這是一個自定義函數,用於格式化拇指、最小值、最大值和平均值上的標簽。覆蓋默認的標簽格式化程序。此函數還支持日期格式。

例子:

// For thumb values, rounds each label to whole numbers
slider.labelFormatFunction = function(value, type) {
  return (type === "value-change") ? value.toFixed(0): value;
}

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 SizeSlider.labelFormatFunction。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。