属性概述
可以设置、检索或侦听任何属性。请参阅使用属性主题。
名称 | 类型 | 描述 | 类 |
---|---|---|---|
Number | 直方图中数据的统计平均值。 更多详情 | HistogramViewModel | |
Number | 从条柱计算的直方图值的范围。 更多详情 | HistogramViewModel | |
Bin[] | 表示直方图中每个条柱的对象数组。 更多详情 | HistogramViewModel | |
String | 类的名称。 更多详情 | Accessor | |
LabelFormatter | 用于格式化标注的函数。 更多详情 | HistogramViewModel | |
Number | 整个直方图的最大值或界限。 更多详情 | HistogramViewModel | |
Number | 整个直方图的最小值或界限。 更多详情 | HistogramViewModel | |
Number | 直方图的值范围。 更多详情 | HistogramViewModel | |
String | 视图模型的当前状态。 更多详情 | HistogramViewModel |
属性详细信息
-
average Number
-
直方图中数据的统计平均值。您通常会从 SummaryStatisticsResult 的
avg
属性中获取该值,该属性是 summaryStatistics 函数的结果。设置后,此值将呈现在直方图上,并具有一个符号,表示其为平均值。
示例// sets result returned from a smart mapping method // to the histogram histogramVM.average = response.statistics.avg;
histogramVM.average = 34.5;
-
binRange Numberreadonly
-
从条柱计算的直方图值的范围。这是通过从最后一个条柱的最大值减去第一个条柱的最小值来计算的。
-
表示直方图中每个条柱的对象数组。此信息通常从 histogram 函数返回。
示例// sets the bins of the histogram from the bins in the histogram() result histogramVM.bins = histogramResult.bins;
// Creates a histogram with 7 bins. histogramVM.bins = [ { minValue: 0, maxValue: 10, count: 4 }, { minValue: 10.1, maxValue: 20, count: 14 }, { minValue: 20.1, maxValue: 30, count: 9 }, { minValue: 30.1, maxValue: 40, count: 34 }, { minValue: 40.1, maxValue: 50, count: 351 }, { minValue: 50.1, maxValue: 60, count: 100 }, { minValue: 60.1, maxValue: 70, count: 1 } ];
-
类的名称。声明的类名称格式化为
geoscene.folder.className
。
-
labelFormatFunction LabelFormatter
-
用于格式化标注的函数。覆盖默认的标注格式化程序。
示例// For thumb values, rounds each label to whole numbers. slider.viewModel.labelFormatFunction = function(value) { return value.toFixed(0); }
-
max Number
-
整个直方图的最大值或界限。这应该与最后一个 bin 的最大界限相匹配。
示例histogramVM.max = 100;
// sets result returned from a smart mapping method // to the histogram histogramVM.max = response.statistics.max;
-
min Number
-
整个直方图的最小值或界限。这应该与第一个 bin 的最小界限相匹配。
示例histogramVM.min = 0;
// sets result returned from a smart mapping method // to the histogram histogramVM.min = response.statistics.min;
-
range Numberreadonly
-
-
state Stringreadonly
-
视图模型的当前状态。
可能的值:"ready"|"disabled"
方法概述
名称 | 返回值类值 | 描述 | 类 |
---|---|---|---|
添加一个或多个与对象的生命周期相关联的句柄。 更多详情 | Accessor | ||
Boolean | 如果存在指定的句柄组,则返回 true。 更多详情 | Accessor | |
移除对象拥有的句柄组。 更多详情 | Accessor |
方法详细说明
-
addHandles(handleOrHandles, groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
添加一个或多个与对象的生命周期相关联的句柄。当对象被销毁时,将移除句柄。
// Manually manage handles const handle = reactiveUtils.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); // Handle gets removed when the object is destroyed. this.addHandles(handle);
参数handleOrHandles WatchHandle|WatchHandle[]对象销毁后,标记为要移除的句柄。
groupKey *optional标识句柄应添加到的组的键。组中的所有句柄稍后都可使用 Accessor.removeHandles() 进行删除。如果未提供键,则句柄将被添加到默认组。
-
起始版本:GeoScene Maps SDK for JavaScript 4.25
-
如果存在指定的句柄组,则返回 true。
参数groupKey *optional组键。
返回类型 描述 Boolean 如果存在指定的句柄组,则返回 true
。示例// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
removeHandles(groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
移除对象拥有的句柄组。
参数groupKey *optional要移除的组键或组键的数组或集合。
示例obj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");