This method is the Perspective for Java equivalent of the PGSDK DryRunTheGraph() function. It calculates, but does not draw, all graph primitives. |
|
Syntax: |
void calcWithoutDrawing(); |
Input: |
None |
Return: |
void; |
This method clears the labels in the chart look but not in the data that deifnes the chart. |
|
Syntax: |
void clearDataLabels(); |
Input: |
None |
Return: |
void; |
This method clears all data and labels from a chart. |
|
Syntax: |
void clearDataStorage (); |
Input: |
None |
Return: |
void; |
Example: |
perspective1.clearDataStorage(); |
|
This method clears all group labels. |
|
Syntax: |
void clearGroupLabels(); |
Input: |
None |
Return: |
void; |
Example: |
perspective1.clearGroupLabels(); |
|
|
Also See: |
This method clears all series labels. |
|
Syntax: |
void clearSeriesLabels(); |
Input: |
None |
Return: |
void; |
Example: |
perspective1.clearSeriesLabels(); |
|
|
Also See: |
|
This function clears all state entries in the zoom list. When zooming is enabled with doZoomIn() and doZoomOut(), the current state of zooming is maintained in a zoom list. For example, the initial, un-zoomed state is "state 0". When doZoomIn() is called (through the UI or the API), "state 1" specifies the zoomed-in state. When doZoomIn() is called again, "state 2" is appended to the list. The setZoomIndex() function can be used to change the state back to "state 1" (for example). If doZoomOut() is called, the old "state 2" is eliminated from the list (all states ABOVE the current one are eliminated), and the new zoomed-out state becomes state 2. This function will clear all entries in the zoom list and restore the list and the chart to its initial, un-zoomed state. |
|
Syntax: |
void clearZoomList(); |
Input: |
None |
Return: |
void; |
Also See: |
ZoomPercentage, doZoomIn(), doZoomOut(), getZoomIndex(), setZoomIndex() |
This function creates a copy of the current chart in a TDG.ImageMap. |
|
Syntax: |
tdg.TDGImageMap copyImageMap() |
Input: |
None |
Return: |
TDGImageMap ; Image map of the current chart. |
Also See: |
sendImageMapToStream() |