Constructor
new AxesController(container, decompViewDict) → {AxesController}
Parameters:
Name | Type | Description |
---|---|---|
container |
Node | Container node to create the controller in. |
decompViewDict |
Object | This is object is keyed by unique identifiers and the values are DecompositionView objects referring to a set of objects presented on screen. This dictionary will usually be shared by all the tabs in the application. This argument is passed by reference. |
- Source:
Returns:
- Type
- AxesController
Extends
Members
$body :Node
jQuery element for the body, which contains the lowermost elementsdisplayed in tab. This goes below the header.
Type:
- Node
- Inherited From:
- Source:
$canvas :Node
jQuery element for the canvas, which contains the header and the body.
Type:
- Node
- Inherited From:
- Source:
$container :Node
jQuery element for the parent container.
Type:
- Node
- Inherited From:
- Source:
$header :Node
jQuery element for the header which contains the uppermost elementsdisplayed in a tab.
Type:
- Node
- Inherited From:
- Source:
$table :Node
The display table where information about currently visible axes isshown.
Type:
- Node
- Source:
active :Boolean
Indicates whether the tab is front most
Type:
- Boolean
- Inherited From:
- Default Value:
- false
- Source:
description :String
Human-readable description of the tab.
Type:
- String
- Inherited From:
- Source:
enabled :Boolean
Indicates if tab can be accessed.
Type:
- Boolean
- Inherited From:
- Default Value:
- true
- Source:
identifier :String
Unique hash identifier for the tab instance.
Type:
- String
- Inherited From:
- Default Value:
- "EMPtab-xxxxxxx"
- Source:
svg :Node
The SVG node where the scree plot lives. For use with D3.
Type:
- Node
- Source:
title :String
Human-readable title of the tab.
Type:
- String
- Inherited From:
- Source:
Methods
buildDisplayTable()
Create a table to display the visible axis information.
Note that when this method is executed the table is destroyed, if it exists, and recreated with the appropriate information.
- Source:
colorChanged(name, color)
Callback to change color of the axes or the background
Parameters:
Name | Type | Description |
---|---|---|
name |
String | The name of the element to change, it can be either 'axes-color' or 'background-color'. |
color |
Integer | The color to set to the |
- Source:
flipAxis(index)
Callback to change the orientation of an axis
Parameters:
Name | Type | Description |
---|---|---|
index |
Integer | The index of the dimension to re-orient, note that if this index is not visible, this callback will take no effect. |
- Source:
fromJSON(Parsed)
Decodes JSON string and modifies its own instance variables accordingly.
Parameters:
Name | Type | Description |
---|---|---|
Parsed |
Object | JSON string representation of self. |
- Overrides:
- Source:
resize(width, height)
Resizes the container, note that the body will take whatever space is available after considering the size of the header. The header shouldn't have height variable objects, once added their height shouldn't really change.
Parameters:
Name | Type | Description |
---|---|---|
width |
Float | the container width. |
height |
Float | the container height. |
- Inherited From:
- Source:
setActive(trulse)
Sets whether or not the tab is visible.
Parameters:
Name | Type | Description |
---|---|---|
trulse |
Boolean | option to activate tab (i.e. move tab to foreground). |
- Inherited From:
- Source:
setEnabled(trulse)
Sets whether or not the tab can be modified or accessed.
Parameters:
Name | Type | Description |
---|---|---|
trulse |
Boolean | option to enable tab. |
- Inherited From:
- Source:
toJSON() → {Object}
Converts the current instance into a JSON string.
- Overrides:
- Source:
Returns:
JSON ready representation of self.
- Type
- Object
updateVisibleAxes(index, position)
Callback to reposition an axis into a new position.
Parameters:
Name | Type | Description |
---|---|---|
index |
Integer | The index of the dimension to set as a new visible
axis, in the corresponding position indicated by |
position |
Integer | The position where the new axis will be set. |
- Source: