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


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


基本信息

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

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

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

類: esri/widgets/Slider

繼承: Slider > Widget > Accessor

自從:用於 JavaScript 4.12 的 ArcGIS API

用法說明

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

labelFormatFunction LabelFormatter


用於格式化標簽的函數。覆蓋默認的標簽格式化程序。

默認情況下,標簽的格式如下:

  • 當數據範圍小於 10 ( (max - min) < 10 ) 時,標簽將根據 precision 屬性中設置的值進行舍入。
  • 當數據範圍大於 10 時,標簽顯示的精度不超過兩位小數,但實際滑塊拇指值將保持 precision 中指定的精度。

使用此屬性來覆蓋上麵定義的行為。

例子:

// For thumb values, rounds each label to whole numbers.
// Note the actual value of the thumb continues to be stored
// based on the indicated data `precision` despite this formatting
slider.labelFormatFunction = function(value, type) {
  return (type === "value") ? value.toFixed(0) : value;
}

相關用法


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