HieService.Metadata

Syntax

Metadata: Object;

Description

The Metadata property sends a request to get series hierarchy metadata.

Example

To execute the example, create service for working with time series named hieSrv (see HieService.getChildEls) and add the following code to the handler that processes document opening:

console.log("Get series hierarchy metadata");	
	hieSrv.Metadata = "Metadata";				
	var meta = hieSrv.Metadata;
	console.log(meta);

After executing the example the output shows the following:

Get series hierarchy metadata

Metadata

See also:

HieService