EaxMdService.setEaxObjectMeta

Syntax

setEaxObjectMeta(report, objectType, metadata, callback);

Parameters

report. PP.Exp.EaxAnalyzer. Express report instance.

objectType. PP.Exp.Ui.EaxObjectType. Visualizer type.

metadata. Object. Object metadata.

callback. PP.Delegate | Function. Callback function.

Description

The setEaxObjectMeta method sets metadata of the specified visualizer.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component).

// Select object type
type = PP.Exp.Ui.EaxObjectType.BubbleChart;
// Set object metadata
meta = { 
    //  Object metadata
};
// Set object metadata
eaxMdService.setEaxObjectMeta(eaxAnalyzer, type, meta);  

After executing the example new metadata is set for bubble chart visualizer.

See also:

EaxMdService