MetaHierarchy.LeafLoadExtent

Syntax

LeafLoadExtent: Number;

Description

The LeafLoadExtent property determines maximum number of leaf elements to be loaded in the hierarchy.

Comments

The number of leaf elements is the maximum number of nesting levels that are loaded.

Example

Executing the example requires to create a service used to work with time series, to get a workbook instance from time series database (see MetaHierarchy.ChildEls) and add the following code in the document open event handler:

console.log("Get maximum number of leaf elements that are loaded in hierarchy");
var nMaxLeafs = hie.getLeafLoadExtent();
console.log(nMaxLeafs);

After executing the example the browser console displays the maximum number of leaf elements that are loaded in hierarchy:

65536

See also:

MetaHierarchy