AnalysisPanel Constructor

Syntax

PP.Exp.Ui.AnalysisPanel(settings);

Parameters

settings. JSON object that contains values of component properties.

Description

The AnalysisPanel constructor creates an instance of the AnalysisPanel class.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Then create the Analysis tab and add it to express report properties panel:

// Get express report properties panel
var propBar = expressBox.getPropertyBarView().getControl();
// Create the Analysis tab
var analysisPanel = new PP.Exp.Ui.AnalysisPanel({
     Source: expressBox.getSource(),
     ImagePath: "../Img/", 
     ViewType: PP.Ui.NavigationItem,   
     GroupName: PP.Exp.Ui.PropertyGroups.Table     
});
// Add the Analysis tab to properties panel
propBar.addItem(analysisPanel);

Executing the example creates the Analysis tab on the express report properties panel:

See also:

AnalysisPanel