/**
* <table class="keyboard-table">
* <thead>
* <tr>
* <th>Target</th>
* <th>Gesture</th>
* <th>Action</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td rowspan="3">Node</td>
* <td><kbd>Tap</kbd></td>
* <td>Select when <code class="prettyprint">selectionMode</code> is enabled.</td>
* </tr>
* <tr>
* <td rowspan="2"><kbd>Press & Hold</kbd></td>
* <td>Display tooltip.</td>
* </tr>
* <tr>
* <td>Display context menu on release.</td>
* </tr>
* <tr>
* <td>Outer Edge</td>
* <td><kbd>Drag</kbd></td>
* <td>Rotate when <code class="prettyprint">rotation</code> is enabled.</td>
* </tr>
* </tbody>
* </table>
* @ojfragment touchDoc - Used in touch gesture section of classdesc, and standalone gesture doc
* @memberof oj.ojSunburst
*/
/**
* <table class="keyboard-table">
* <thead>
* <tr>
* <th>Key</th>
* <th>Action</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td><kbd>Tab</kbd></td>
* <td>Move focus to next component.</td>
* </tr>
* <tr>
* <td><kbd>Shift + Tab</kbd></td>
* <td>Move focus to previous component.</td>
* </tr>
* <tr>
* <td><kbd>UpArrow</kbd></td>
* <td>
* Move focus and selection to the first adjacent sector in an inner or outer layer (ring). In
* the northern hemisphere of the sunburst, this will move away from the center, while it will move towards the
* center in the southern hemisphere of the sunburst.
* </td>
* </tr>
* <tr>
* <td><kbd>DownArrow</kbd></td>
* <td>
* Move focus and selection to the first adjacent sector in an inner or outer layer (ring). In
* the northern hemisphere of the sunburst, this will move towards the center, while it will move away from the
* center in the southern hemisphere of the sunburst.
* </td>
* </tr>
* <tr>
* <td><kbd>LeftArrow</kbd></td>
* <td>Move focus and selection counterclockwise to adjacent sector in the same layer (ring).</td>
* </tr>
* <tr>
* <td><kbd>RightArrow</kbd></td>
* <td>Move focus and selection clockwise to adjacent sector in the same layer (ring).</td>
* </tr>
* <tr>
* <td><kbd>Shift + UpArrow</kbd></td>
* <td>
* Move focus and extend selection to the first adjacent sector in an inner or outer layer (ring). In
* the northern hemisphere of the sunburst, this will move away from the center, while it will move towards the
* center in the southern hemisphere of the sunburst.
* </td>
* </tr>
* <tr>
* <td><kbd>Shift + DownArrow</kbd></td>
* <td>
* Move focus and extend selection to the first adjacent sector in an inner or outer layer (ring). In
* the northern hemisphere of the sunburst, this will move towards the center, while it will move away from the
* center in the southern hemisphere of the sunburst.
* </td>
* </tr>
* <tr>
* <td><kbd>Shift + LeftArrow</kbd></td>
* <td>Move focus and extend selection counterclockwise to adjacent sector in the same layer (ring).</td>
* </tr>
* <tr>
* <td><kbd>Shift + RightArrow</kbd></td>
* <td>Move focus and extend selection clockwise to adjacent sector in the same layer (ring).</td>
* </tr>
* <tr>
* <td><kbd>Ctrl + UpArrow</kbd></td>
* <td>
* Move focus to the first adjacent sector in an inner or outer layer (ring), without changing the
* current selection. In the northern hemisphere of the sunburst, this will move away from the center, while it
* will move towards the center in the southern hemisphere of the sunburst.
* </td>
* </tr>
* <tr>
* <td><kbd>Ctrl + DownArrow</kbd></td>
* <td>
* Move focus to the first adjacent sector in an inner or outer layer (ring), without changing the
* current selection. In the northern hemisphere of the sunburst, this will move towards the center, while it
* will move away from the center in the southern hemisphere of the sunburst.
* </td>
* </tr>
* <tr>
* <td><kbd>Ctrl + LeftArrow</kbd></td>
* <td>Move focus counterclockwise to adjacent sector in the same layer (ring), without changing the current
* selection.</td>
* </tr>
* <tr>
* <td><kbd>Ctrl + RightArrow</kbd></td>
* <td>Move focus clockwise to adjacent sector in the same layer (ring), without changing the current
* selection.</td>
* </tr>
* <tr>
* <td><kbd>Ctrl + Spacebar</kbd></td>
* <td>Multi-select sectors with focus.</td>
* </tr>
* <tr>
* <td><kbd>Shift + Alt + LeftArrow</kbd></td>
* <td>Rotate 5 degrees counterclockwise.</td>
* </tr>
* <tr>
* <td><kbd>Shift + Alt + RightArrow</kbd></td>
* <td>Rotate 5 degrees clockwise.</td>
* </tr>
* </tbody>
* </table>
* @ojfragment keyboardDoc - Used in keyboard section of classdesc, and standalone gesture doc
* @memberof oj.ojSunburst
*/
// SubId Locators **************************************************************
/**
* <p>Sub-ID for sunburst nodes indexed by their position in the hierarchy.</p>
*
* @property {Array} indexPath The array of numerical indices for the node.
*
* @ojsubid oj-sunburst-node
* @memberof oj.ojSunburst
*
* @example <caption>Get the node at index 0 in the first layer, index 1 in the second:</caption>
* var nodes = $( ".selector" ).ojSunburst( "getNodeBySubId", {'subId': 'oj-sunburst-node', 'indexPath': [0, 1]} );
*/
/**
* <p>Sub-ID for the the sunburst tooltip.</p>
*
* <p>See the <a href="#getNodeBySubId">getNodeBySubId</a> and
* <a href="#getSubIdByNode">getSubIdByNode</a> methods for details.</p>
*
* @ojsubid
* @member
* @name oj-sunburst-tooltip
* @memberof oj.ojSunburst
* @instance
*
* @example <caption>Get the tooltip object of the sunburst, if displayed:</caption>
* var nodes = $( ".selector" ).ojSunburst( "getNodeBySubId", {'subId': 'oj-sunburst-tooltip'} );
*/
// Node Context Objects ********************************************************
/**
* <p>Context for sunburst nodes indexed by their position in the hierarchy.</p>
*
* @property {Array} indexPath The array of numerical indices for the node.
*
* @ojnodecontext oj-sunburst-node
* @memberof oj.ojSunburst
*/
Source: src/main/javascript/oracle/oj/ojsunburst/ojsunburst_doc.js
Oracle® JavaScript Extension Toolkit (JET)
1.1.2
E65298-01