Classes


Class actuate.dashboard.DashboardDefinition

A wrapper class for the definition of a dashboard file.
Member of: actuate.dashboard.

Class Summary
Constructor Attributes Constructor Name and Description
 
Constructs an object that is a wrapper for the definition of a dashboard file.
Method Summary
Method Attributes Method Name and Description
 
Returns the name of the default active tab for this dashboard definition.
 
Returns an array of the tabs in this dashboard definition.
Class Detail
actuate.dashboard.DashboardDefinition()
Constructs an object that is a wrapper for the definition of a dashboard file.
Method Detail
{String} getDefaultActiveTab()
Returns the name of the default active tab for this dashboard definition. This example displays the default active tab for the myDashDef DashboardDefinition object in an alert box:
	alert(myDashboard.getDefaultActiveTab( ));
Returns:
{String} The name of the default active tab.

{Array} getTabs()
Returns an array of the tabs in this dashboard definition. This example assigns the array of tabs to the mytabs variable:
	var mytabs = new Array[myDashDef.getTabs( )];
Returns:
{Array} An array of actuate.dashboard.Tab objects.

Documentation generated by JsDoc Toolkit 2.0.1 on Tue Jan 06 2015 04:13:44 GMT-0800 (PST)