diff --git a/ChangeLog b/ChangeLog index dced8f59f..69e462483 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +20-JUL-2012: 1.10.2.0 + +- Adds mxUtils.readInputStream [Java] +- Adds mxGraph.doResizeContainer hook for mxGraph.resizeContainer switch [JavaScript] +- Removes window resize event handling for SVG canvas in mxGraphView.createSvg [JavaScript] +- Adds mxClient.IS_QUIRKS for IE quirks mode detection in all browsers [JavaScript] +- Replaces mxGraph.getOffsetSize with getBorderSizes [JavaScript] +- Uses relative size, minWidth/-Height for graph canvas sizing in mxGraph.sizeDidChange [JavaScript] +- Adds mxGraphView.updateHtmlCanvasSize for minWidth/-Height in quirks mode [JavaScript] +- Adds new mxPanningHandler.consumePanningTrigger hook [JavaScript] +- Removes meta key check in mxGraph.isForceMarqueeEvent (checks alt key only) [JavaScript] +- Uses meta key (cmd) instead of control key in mxGraph.isToggleEvent on Mac [JavaScript] + 16-JUL-2012: 1.10.1.5 - Adds handling for rotation in mxGraphView.updateFloatingTerminalPoint [JavaScript] diff --git a/docs/js-api/files/handler/mxPanningHandler-js.html b/docs/js-api/files/handler/mxPanningHandler-js.html index 90710785b..c45bb08f6 100644 --- a/docs/js-api/files/handler/mxPanningHandler-js.html +++ b/docs/js-api/files/handler/mxPanningHandler-js.html @@ -11,27 +11,27 @@ if (browserType) {document.write("
");if (browserV -

mxPanningHandler

Event handler that pans and creates popupmenus.  To use the left mousebutton for panning without interfering with cell moving and resizing, use <isUseLeftButton> and <isIgnoreCell>.  For grid size steps while panning, use useGrid.  This handler is built-into <mxGraph.panningHandler> and enabled using mxGraph.setPanning.

Summary
mxPanningHandlerEvent handler that pans and creates popupmenus.
Functions
mxPanningHandlerConstructs an event handler that creates a mxPopupMenu and pans the graph.
Events
mxEvent.PAN_STARTFires when the panning handler changes its <active> state to true.
mxEvent.PANFires while handle is processing events.
mxEvent.PAN_ENDFires when the panning handler changes its <active> state to false.
Variables
graphReference to the enclosing mxGraph.
usePopupTriggerSpecifies if the <isPopupTrigger> should also be used for panning.
useLeftButtonForPanningSpecifies if panning should be active for the left mouse button.
selectOnPopupSpecifies if cells should be selected if a popupmenu is displayed for them.
clearSelectionOnBackgroundSpecifies if cells should be deselected if a popupmenu is displayed for the diagram background.
ignoreCellSpecifies if panning should be active even if there is a cell under the mousepointer.
previewEnabledSpecifies if the panning should be previewed.
useGridSpecifies if the panning steps should be aligned to the grid size.
panningEnabledSpecifies if panning should be enabled.
Functions
isPanningEnabledReturns panningEnabled.
setPanningEnabledSets panningEnabled.
initInitializes the shapes required for this vertex handler.
isPanningTriggerReturns true if the given event is a panning trigger for the optional given cell.
mouseDownHandles the event by initiating the panning.
mouseMoveHandles the event by updating the panning on the graph.
mouseUpHandles the event by setting the translation on the view or showing the popupmenu.
getCellForPopupEventHook to return the cell for the mouse up popup trigger handling.
panGraphPans graph by the given amount.
destroyDestroys the handler and all its resources and DOM nodes.
+

mxPanningHandler

Event handler that pans and creates popupmenus.  To use the left mousebutton for panning without interfering with cell moving and resizing, use <isUseLeftButton> and <isIgnoreCell>.  For grid size steps while panning, use useGrid.  This handler is built-into <mxGraph.panningHandler> and enabled using mxGraph.setPanning.

Summary
mxPanningHandlerEvent handler that pans and creates popupmenus.
Functions
mxPanningHandlerConstructs an event handler that creates a mxPopupMenu and pans the graph.
Events
mxEvent.PAN_STARTFires when the panning handler changes its <active> state to true.
mxEvent.PANFires while handle is processing events.
mxEvent.PAN_ENDFires when the panning handler changes its <active> state to false.
Variables
graphReference to the enclosing mxGraph.
usePopupTriggerSpecifies if the <isPopupTrigger> should also be used for panning.
useLeftButtonForPanningSpecifies if panning should be active for the left mouse button.
selectOnPopupSpecifies if cells should be selected if a popupmenu is displayed for them.
clearSelectionOnBackgroundSpecifies if cells should be deselected if a popupmenu is displayed for the diagram background.
ignoreCellSpecifies if panning should be active even if there is a cell under the mousepointer.
previewEnabledSpecifies if the panning should be previewed.
useGridSpecifies if the panning steps should be aligned to the grid size.
panningEnabledSpecifies if panning should be enabled.
Functions
isPanningEnabledReturns panningEnabled.
setPanningEnabledSets panningEnabled.
initInitializes the shapes required for this vertex handler.
isPanningTriggerReturns true if the given event is a panning trigger for the optional given cell.
mouseDownHandles the event by initiating the panning.
consumePanningTriggerConsumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mouseMoveHandles the event by updating the panning on the graph.
mouseUpHandles the event by setting the translation on the view or showing the popupmenu.
getCellForPopupEventHook to return the cell for the mouse up popup trigger handling.
panGraphPans graph by the given amount.
destroyDestroys the handler and all its resources and DOM nodes.

Functions

-

mxPanningHandler

Constructs an event handler that creates a mxPopupMenu and pans the graph.

+

mxPanningHandler

Constructs an event handler that creates a mxPopupMenu and pans the graph.

Events

-

mxEvent.PAN_START

Fires when the panning handler changes its <active> state to true.  The <code>event</code> property contains the corresponding mxMouseEvent.

+

mxEvent.PAN_START

Fires when the panning handler changes its <active> state to true.  The <code>event</code> property contains the corresponding mxMouseEvent.

-

mxEvent.PAN

Fires while handle is processing events.  The <code>event</code> property contains the corresponding mxMouseEvent.

+

mxEvent.PAN

Fires while handle is processing events.  The <code>event</code> property contains the corresponding mxMouseEvent.

-

mxEvent.PAN_END

Fires when the panning handler changes its <active> state to false.  The <code>event</code> property contains the corresponding mxMouseEvent.

+

mxEvent.PAN_END

Fires when the panning handler changes its <active> state to false.  The <code>event</code> property contains the corresponding mxMouseEvent.

Variables

-

graph

mxPanningHandler.prototype.graph

Reference to the enclosing mxGraph.

+

graph

mxPanningHandler.prototype.graph

Reference to the enclosing mxGraph.

-

usePopupTrigger

mxPanningHandler.prototype.usePopupTrigger

Specifies if the <isPopupTrigger> should also be used for panning.  To avoid conflicts, the panning is only activated if the mouse was moved more than mxGraph.tolerance, otherwise, a single click is assumed and the popupmenu is displayed.  Default is true.

+

usePopupTrigger

mxPanningHandler.prototype.usePopupTrigger

Specifies if the <isPopupTrigger> should also be used for panning.  To avoid conflicts, the panning is only activated if the mouse was moved more than mxGraph.tolerance, otherwise, a single click is assumed and the popupmenu is displayed.  Default is true.

-

useLeftButtonForPanning

mxPanningHandler.prototype.useLeftButtonForPanning

Specifies if panning should be active for the left mouse button.  Setting this to true may conflict with mxRubberband.  Default is false.

+

useLeftButtonForPanning

mxPanningHandler.prototype.useLeftButtonForPanning

Specifies if panning should be active for the left mouse button.  Setting this to true may conflict with mxRubberband.  Default is false.

selectOnPopup

mxPanningHandler.prototype.selectOnPopup

Specifies if cells should be selected if a popupmenu is displayed for them.  Default is true.

@@ -47,23 +47,40 @@ if (browserType) {document.write("
");if (browserV

Functions

-

isPanningEnabled

mxPanningHandler.prototype.isPanningEnabled = function()

Returns panningEnabled.

+

isPanningEnabled

mxPanningHandler.prototype.isPanningEnabled = function()

Returns panningEnabled.

-

setPanningEnabled

mxPanningHandler.prototype.setPanningEnabled = function(value)

Sets panningEnabled.

+

setPanningEnabled

mxPanningHandler.prototype.setPanningEnabled = function(value)

Sets panningEnabled.

init

mxPanningHandler.prototype.init = function()

Initializes the shapes required for this vertex handler.

-

isPanningTrigger

mxPanningHandler.prototype.isPanningTrigger = function(me)

Returns true if the given event is a panning trigger for the optional given cell.  This returns true if control-shift is pressed or if usePopupTrigger is true and the event is a popup trigger.

+

isPanningTrigger

mxPanningHandler.prototype.isPanningTrigger = function(me)

Returns true if the given event is a panning trigger for the optional given cell.  This returns true if control-shift is pressed or if usePopupTrigger is true and the event is a popup trigger.

mouseDown

mxPanningHandler.prototype.mouseDown = function(sender,
me)

Handles the event by initiating the panning.  By consuming the event all subsequent events of the gesture are redirected to this handler.

+

consumePanningTrigger

mxPanningHandler.prototype.consumePanningTrigger = function(me)

Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.  The default is to invoke mxMouseEvent.consume.  Note that this will block any further event processing.  If you haven’t disabled built-in context menus and require immediate selection of the cell on mouseDown in Safari and/or on the Mac, then use the following code:

mxPanningHandler.prototype.consumePanningTrigger = function(me)
+{
+  if (me.evt.preventDefault)
+  {
+    me.evt.preventDefault();
+  }
+
+  // Stops event processing in IE
+  me.evt.returnValue = false;
+
+  // Sets local consumed state
+  if (!mxClient.IS_SF && !mxClient.IS_MAC)
+  {
+    me.consumed = true;
+  }
+};
+

mouseMove

mxPanningHandler.prototype.mouseMove = function(sender,
me)

Handles the event by updating the panning on the graph.

mouseUp

mxPanningHandler.prototype.mouseUp = function(sender,
me)

Handles the event by setting the translation on the view or showing the popupmenu.

getCellForPopupEvent

mxPanningHandler.prototype.getCellForPopupEvent = function(me)

Hook to return the cell for the mouse up popup trigger handling.

-

panGraph

mxPanningHandler.prototype.panGraph = function(dx,
dy)

Pans graph by the given amount.

+

panGraph

mxPanningHandler.prototype.panGraph = function(dx,
dy)

Pans graph by the given amount.

destroy

mxPanningHandler.prototype.destroy = function()

Destroys the handler and all its resources and DOM nodes.

@@ -81,7 +98,7 @@ HideAllBut([2], 13);// -->
-
Event handler that pans and creates popupmenus.
mxPanningHandler.prototype.graph
Reference to the enclosing mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxPanningHandler.prototype.clearSelectionOnBackground
Specifies if cells should be deselected if a popupmenu is displayed for the diagram background.
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxPanningHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxPanningHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
Base class for all mouse events in mxGraph.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
Event handler that selects rectangular regions.
+
Event handler that pans and creates popupmenus.
mxPanningHandler.prototype.graph
Reference to the enclosing mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxPanningHandler.prototype.clearSelectionOnBackground
Specifies if cells should be deselected if a popupmenu is displayed for the diagram background.
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxPanningHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
Base class for all mouse events in mxGraph.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxPanningHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
Event handler that selects rectangular regions.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
diff --git a/docs/js-api/files/mxClient-js.html b/docs/js-api/files/mxClient-js.html index c2b8343bc..a413319dc 100644 --- a/docs/js-api/files/mxClient-js.html +++ b/docs/js-api/files/mxClient-js.html @@ -11,16 +11,18 @@ if (browserType) {document.write("
");if (browserV -

mxClient

Bootstrapping mechanism for the mxGraph thin client.  The production version of this file contains all code required to run the mxGraph thin client, as well as global constants to identify the browser and operating system in use.  You may have to load chrome://global/content/contentAreaUtils.js in your page to disable certain security restrictions in Mozilla.

Summary
mxClientBootstrapping mechanism for the mxGraph thin client.
Variables
VERSIONContains the current version of the mxGraph library.
IS_IETrue if the current browser is Internet Explorer.
IS_IE6True if the current browser is Internet Explorer 6.x.
IS_NSTrue if the current browser is Netscape (including Firefox).
IS_OPTrue if the current browser is Opera.
IS_OTTrue if -o-transform is available as a CSS style.
IS_SFTrue if the current browser is Safari.
IS_GCTrue if the current browser is Google Chrome.
IS_MTTrue if -moz-transform is available as a CSS style.
IS_SVGTrue if the browser supports SVG.
NO_FOTrue if foreignObject support is not available.
IS_VMLTrue if the browser supports VML.
IS_MACTrue if the client is a Mac.
IS_TOUCHTrue if this client uses a touch interface (no mouse).
IS_LOCALTrue if the documents location does not start with http:// or https://.
Functions
isBrowserSupportedReturns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
linkAdds a link node to the head of the document.
includeDynamically adds a script node to the document header.
disposeFrees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Variables
mxLoadResourcesOptional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
mxLoadStylesheetsOptional global config variable to toggle loading of the CSS files when the library is initialized.
basePathBasepath for all URLs in the core without trailing slash.
imageBasePathBasepath for all images URLs in the core without trailing slash.
languageDefines the language of the client, eg.
defaultLanguageDefines the default language which is used in the common resource files.
languagesDefines the optional array of all supported language extensions.
+

mxClient

Bootstrapping mechanism for the mxGraph thin client.  The production version of this file contains all code required to run the mxGraph thin client, as well as global constants to identify the browser and operating system in use.  You may have to load chrome://global/content/contentAreaUtils.js in your page to disable certain security restrictions in Mozilla.

Summary
mxClientBootstrapping mechanism for the mxGraph thin client.
Variables
VERSIONContains the current version of the mxGraph library.
IS_IETrue if the current browser is Internet Explorer.
IS_IE6True if the current browser is Internet Explorer 6.x.
IS_QUIRKSTrue if the current browser is Internet Explorer and it is in quirks mode.
IS_NSTrue if the current browser is Netscape (including Firefox).
IS_OPTrue if the current browser is Opera.
IS_OTTrue if -o-transform is available as a CSS style.
IS_SFTrue if the current browser is Safari.
IS_GCTrue if the current browser is Google Chrome.
IS_MTTrue if -moz-transform is available as a CSS style.
IS_SVGTrue if the browser supports SVG.
NO_FOTrue if foreignObject support is not available.
IS_VMLTrue if the browser supports VML.
IS_MACTrue if the client is a Mac.
IS_TOUCHTrue if this client uses a touch interface (no mouse).
IS_LOCALTrue if the documents location does not start with http:// or https://.
Functions
isBrowserSupportedReturns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
linkAdds a link node to the head of the document.
includeDynamically adds a script node to the document header.
disposeFrees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Variables
mxLoadResourcesOptional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
mxLoadStylesheetsOptional global config variable to toggle loading of the CSS files when the library is initialized.
basePathBasepath for all URLs in the core without trailing slash.
imageBasePathBasepath for all images URLs in the core without trailing slash.
languageDefines the language of the client, eg.
defaultLanguageDefines the default language which is used in the common resource files.
languagesDefines the optional array of all supported language extensions.

Variables

-

VERSION

Contains the current version of the mxGraph library.  The strings that communicate versions of mxGraph use the following format.

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 1.10.1.5.

+

VERSION

Contains the current version of the mxGraph library.  The strings that communicate versions of mxGraph use the following format.

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 1.10.2.0.

IS_IE

IS_IE: navigator.userAgent.indexOf('MSIE') >

True if the current browser is Internet Explorer.

IS_IE6

IS_IE6: navigator.userAgent.indexOf('MSIE 6') >

True if the current browser is Internet Explorer 6.x.

+

IS_QUIRKS

IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >

True if the current browser is Internet Explorer and it is in quirks mode.

+

IS_NS

IS_NS: navigator.userAgent.indexOf('Mozilla/') >

True if the current browser is Netscape (including Firefox).

IS_OP

IS_OP: navigator.userAgent.indexOf('Opera/') >

True if the current browser is Opera.

@@ -47,7 +49,7 @@ if (browserType) {document.write("
");if (browserV

Functions

-

isBrowserSupported

isBrowserSupported: function()

Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.

Example

if (!mxClient.isBrowserSupported())
+

isBrowserSupported

isBrowserSupported: function()

Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.

Example

if (!mxClient.isBrowserSupported())
 {
   mxUtils.error('Browser is not supported!', 200, false);
 }
@@ -60,7 +62,7 @@ if (browserType) {document.write("
");if (browserV

Variables

-

mxLoadResources

Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.  Default is true.  NOTE: This is a global variable, not a variable of mxClient.

<script type="text/javascript">
+

mxLoadResources

Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.  Default is true.  NOTE: This is a global variable, not a variable of mxClient.

<script type="text/javascript">
      var mxLoadResources = false;
 </script>
 <script type="text/javascript" src="/path/to/core/directory/js/mxClient.js"></script>
@@ -75,15 +77,15 @@ if (browserType) {document.write("
");if (browserV </script> <script type="text/javascript" src="/path/to/core/directory/js/mxClient.js"></script>

When using a relative path, the path is relative to the URL of the page that contains the assignment.  Trailing slashes are automatically removed.

-

imageBasePath

Basepath for all images URLs in the core without trailing slash.  Default is mxClient.basePath + ‘/images’.  Set mxImageBasePath prior to loading the mxClient library as follows to override this setting:

<script type="text/javascript">
+

imageBasePath

Basepath for all images URLs in the core without trailing slash.  Default is mxClient.basePath + ‘/images’.  Set mxImageBasePath prior to loading the mxClient library as follows to override this setting:

<script type="text/javascript">
      mxImageBasePath = '/path/to/image/directory';
 </script>
 <script type="text/javascript" src="/path/to/core/directory/js/mxClient.js"></script>

When using a relative path, the path is relative to the URL of the page that contains the assignment.  Trailing slashes are automatically removed.

-

language

Defines the language of the client, eg. en for english, de for german etc.  The special value ‘none’ will disable all built-in internationalization and resource loading.  See mxResources.getSpecialBundle for handling identifiers with and without a dash.

Set mxLanguage prior to loading the mxClient library as follows to override this setting:

<script type="text/javascript">
+

language

Defines the language of the client, eg. en for english, de for german etc.  The special value ‘none’ will disable all built-in internationalization and resource loading.  See mxResources.getSpecialBundle for handling identifiers with and without a dash.

Set mxLanguage prior to loading the mxClient library as follows to override this setting:

<script type="text/javascript">
      mxLanguage = 'en';
 </script>
-<script type="text/javascript" src="js/mxClient.js"></script>

If internationalization is disabled, then the following variables should be overridden to reflect the current language of the system.  These variables are cleared when i18n is disabled.  mxEditor.askZoomResource, mxEditor.lastSavedResource, mxEditor.currentFileResource, mxEditor.propertiesResource, mxEditor.tasksResource, mxEditor.helpResource, mxEditor.outlineResource, mxElbowEdgeHandler.doubleClickOrientationResource, mxUtils.errorResource, mxUtils.closeResource, mxGraphSelectionModel.doneResource, mxGraphSelectionModel.updatingSelectionResource, mxGraphView.doneResource, mxGraphView.updatingDocumentResource, <mxCellRenderer.collapseExpandResource>, mxGraph.containsValidationErrorsResource and mxGraph.alreadyConnectedResource.

+<script type="text/javascript" src="js/mxClient.js"></script>

If internationalization is disabled, then the following variables should be overridden to reflect the current language of the system.  These variables are cleared when i18n is disabled.  mxEditor.askZoomResource, mxEditor.lastSavedResource, mxEditor.currentFileResource, mxEditor.propertiesResource, mxEditor.tasksResource, mxEditor.helpResource, mxEditor.outlineResource, mxElbowEdgeHandler.doubleClickOrientationResource, mxUtils.errorResource, mxUtils.closeResource, mxGraphSelectionModel.doneResource, mxGraphSelectionModel.updatingSelectionResource, mxGraphView.doneResource, mxGraphView.updatingDocumentResource, <mxCellRenderer.collapseExpandResource>, mxGraph.containsValidationErrorsResource and mxGraph.alreadyConnectedResource.

defaultLanguage

Defines the default language which is used in the common resource files.  Any resources for this language will only load the common resource file, but not the language-specific resource file.  Default is ‘en’.

Set mxDefaultLanguage prior to loading the mxClient library as follows to override this setting:

<script type="text/javascript">
      mxDefaultLanguage = 'de';
@@ -109,7 +111,7 @@ HideAllBut([1], 13);// -->
-
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
include: function(src)
Dynamically adds a script node to the document header.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Extends mxEventSource to implement a graph component for the browser.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
Basepath for all URLs in the core without trailing slash.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxEditor.prototype.askZoomResource
Specifies the resource key for the zoom dialog.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
Specifies the resource key for the title of the error window.
Specifies the resource key for the label of the close button.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
Specifies the resource key for the status message while the document is being updated.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
+
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
include: function(src)
Dynamically adds a script node to the document header.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
Extends mxEventSource to implement a graph component for the browser.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
Basepath for all URLs in the core without trailing slash.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxEditor.prototype.askZoomResource
Specifies the resource key for the zoom dialog.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
Specifies the resource key for the title of the error window.
Specifies the resource key for the label of the close button.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
Specifies the resource key for the status message while the document is being updated.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
diff --git a/docs/js-api/files/util/mxEvent-js.html b/docs/js-api/files/util/mxEvent-js.html index 610b4ab3e..9e2403dab 100644 --- a/docs/js-api/files/util/mxEvent-js.html +++ b/docs/js-api/files/util/mxEvent-js.html @@ -11,7 +11,7 @@ if (browserType) {document.write("
");if (browserV -

mxEvent

Cross-browser DOM event support.  For internal event handling, mxEventSource and the graph event dispatch loop in mxGraph are used.

Memory Leaks

Use this class for adding and removing listeners to/from DOM nodes.  The removeAllListeners function is provided to remove all listeners that have been added using addListener.  The function should be invoked when the last reference is removed in the JavaScript code, typically when the referenced DOM node is removed from the DOM, and helps to reduce memory leaks in IE6.

Summary
mxEventCross-browser DOM event support.
Variables
objectsContains all objects where any listener was added using addListener.
Functions
addListenerBinds the function to the specified event on the given element.
removeListenerRemoves the specified listener from the given element.
removeAllListenersRemoves all listeners from the given element.
redirectMouseEventsRedirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
releaseRemoves the known listeners from the given DOM node and its descendants.
disableContextMenuDisables the context menu for the given element.
getSourceReturns the event’s target or srcElement depending on the browser.
isConsumedReturns true if the event has been consumed using consume.
isLeftMouseButtonReturns true if the left mouse button is pressed for the given event.
isRightMouseButtonReturns true if the right mouse button was pressed.
isPopupTriggerReturns true if the event is a popup trigger.
isShiftDownReturns true if the shift key is pressed for the given event.
isAltDownReturns true if the alt key is pressed for the given event.
isControlDownReturns true if the control key is pressed for the given event.
isMetaDownReturns true if the meta key is pressed for the given event.
getMainEventReturns the touch or mouse event that contains the mouse coordinates.
getClientXReturns true if the meta key is pressed for the given event.
getClientYReturns true if the meta key is pressed for the given event.
consumeConsumes the given event.
Variables
LABEL_HANDLEIndex for the label handle in an mxMouseEvent.
MOUSE_DOWNSpecifies the event name for mouseDown.
MOUSE_MOVESpecifies the event name for mouseMove.
MOUSE_UPSpecifies the event name for mouseUp.
ACTIVATESpecifies the event name for activate.
RESIZE_STARTSpecifies the event name for resizeStart.
RESIZESpecifies the event name for resize.
RESIZE_ENDSpecifies the event name for resizeEnd.
MOVE_STARTSpecifies the event name for moveStart.
MOVESpecifies the event name for move.
MOVE_ENDSpecifies the event name for moveEnd.
PAN_STARTSpecifies the event name for panStart.
PANSpecifies the event name for pan.
PAN_ENDSpecifies the event name for panEnd.
MINIMIZESpecifies the event name for minimize.
NORMALIZESpecifies the event name for normalize.
MAXIMIZESpecifies the event name for maximize.
HIDESpecifies the event name for hide.
SHOWSpecifies the event name for show.
CLOSESpecifies the event name for close.
DESTROYSpecifies the event name for destroy.
REFRESHSpecifies the event name for refresh.
SIZESpecifies the event name for size.
SELECTSpecifies the event name for select.
FIREDSpecifies the event name for fired.
GETSpecifies the event name for get.
RECEIVESpecifies the event name for receive.
CONNECTSpecifies the event name for connect.
DISCONNECTSpecifies the event name for disconnect.
SUSPENDSpecifies the event name for suspend.
RESUMESpecifies the event name for suspend.
MARKSpecifies the event name for mark.
SESSIONSpecifies the event name for session.
ROOTSpecifies the event name for root.
POSTSpecifies the event name for post.
OPENSpecifies the event name for open.
SAVESpecifies the event name for open.
BEFORE_ADD_VERTEXSpecifies the event name for beforeAddVertex.
ADD_VERTEXSpecifies the event name for addVertex.
AFTER_ADD_VERTEXSpecifies the event name for afterAddVertex.
DONESpecifies the event name for done.
EXECUTESpecifies the event name for execute.
BEGIN_UPDATESpecifies the event name for beginUpdate.
END_UPDATESpecifies the event name for endUpdate.
BEFORE_UNDOSpecifies the event name for beforeUndo.
UNDOSpecifies the event name for undo.
REDOSpecifies the event name for redo.
CHANGESpecifies the event name for change.
NOTIFYSpecifies the event name for notify.
LAYOUT_CELLSSpecifies the event name for layoutCells.
CLICKSpecifies the event name for click.
SCALESpecifies the event name for scale.
TRANSLATESpecifies the event name for translate.
SCALE_AND_TRANSLATESpecifies the event name for scaleAndTranslate.
UPSpecifies the event name for up.
DOWNSpecifies the event name for down.
ADDSpecifies the event name for add.
CLEARSpecifies the event name for clear.
ADD_CELLSSpecifies the event name for addCells.
CELLS_ADDEDSpecifies the event name for cellsAdded.
MOVE_CELLSSpecifies the event name for moveCells.
CELLS_MOVEDSpecifies the event name for cellsMoved.
RESIZE_CELLSSpecifies the event name for resizeCells.
CELLS_RESIZEDSpecifies the event name for cellsResized.
TOGGLE_CELLSSpecifies the event name for toggleCells.
CELLS_TOGGLEDSpecifies the event name for cellsToggled.
ORDER_CELLSSpecifies the event name for orderCells.
CELLS_ORDEREDSpecifies the event name for cellsOrdered.
REMOVE_CELLSSpecifies the event name for removeCells.
CELLS_REMOVEDSpecifies the event name for cellsRemoved.
GROUP_CELLSSpecifies the event name for groupCells.
UNGROUP_CELLSSpecifies the event name for ungroupCells.
REMOVE_CELLS_FROM_PARENTSpecifies the event name for removeCellsFromParent.
FOLD_CELLSSpecifies the event name for foldCells.
CELLS_FOLDEDSpecifies the event name for cellsFolded.
ALIGN_CELLSSpecifies the event name for alignCells.
LABEL_CHANGEDSpecifies the event name for labelChanged.
CONNECT_CELLSpecifies the event name for connectCell.
CELL_CONNECTEDSpecifies the event name for cellConnected.
SPLIT_EDGESpecifies the event name for splitEdge.
FLIP_EDGESpecifies the event name for flipEdge.
START_EDITINGSpecifies the event name for startEditing.
ADD_OVERLAYSpecifies the event name for addOverlay.
REMOVE_OVERLAYSpecifies the event name for removeOverlay.
UPDATE_CELL_SIZESpecifies the event name for updateCellSize.
ESCAPESpecifies the event name for escape.
CLICKSpecifies the event name for click.
DOUBLE_CLICKSpecifies the event name for doubleClick.
+

mxEvent

Cross-browser DOM event support.  For internal event handling, mxEventSource and the graph event dispatch loop in mxGraph are used.

Memory Leaks

Use this class for adding and removing listeners to/from DOM nodes.  The removeAllListeners function is provided to remove all listeners that have been added using addListener.  The function should be invoked when the last reference is removed in the JavaScript code, typically when the referenced DOM node is removed from the DOM, and helps to reduce memory leaks in IE6.

Summary
mxEventCross-browser DOM event support.
Variables
objectsContains all objects where any listener was added using addListener.
Functions
addListenerBinds the function to the specified event on the given element.
removeListenerRemoves the specified listener from the given element.
removeAllListenersRemoves all listeners from the given element.
redirectMouseEventsRedirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
releaseRemoves the known listeners from the given DOM node and its descendants.
disableContextMenuDisables the context menu for the given element.
getSourceReturns the event’s target or srcElement depending on the browser.
isConsumedReturns true if the event has been consumed using consume.
isLeftMouseButtonReturns true if the left mouse button is pressed for the given event.
isRightMouseButtonReturns true if the right mouse button was pressed.
isPopupTriggerReturns true if the event is a popup trigger.
isShiftDownReturns true if the shift key is pressed for the given event.
isAltDownReturns true if the alt key is pressed for the given event.
isControlDownReturns true if the control key is pressed for the given event.
isMetaDownReturns true if the meta key is pressed for the given event.
getMainEventReturns the touch or mouse event that contains the mouse coordinates.
getClientXReturns true if the meta key is pressed for the given event.
getClientYReturns true if the meta key is pressed for the given event.
consumeConsumes the given event.
Variables
LABEL_HANDLEIndex for the label handle in an mxMouseEvent.
ROTATION_HANDLEIndex for the rotation handle in an mxMouseEvent.
MOUSE_DOWNSpecifies the event name for mouseDown.
MOUSE_MOVESpecifies the event name for mouseMove.
MOUSE_UPSpecifies the event name for mouseUp.
ACTIVATESpecifies the event name for activate.
RESIZE_STARTSpecifies the event name for resizeStart.
RESIZESpecifies the event name for resize.
RESIZE_ENDSpecifies the event name for resizeEnd.
MOVE_STARTSpecifies the event name for moveStart.
MOVESpecifies the event name for move.
MOVE_ENDSpecifies the event name for moveEnd.
PAN_STARTSpecifies the event name for panStart.
PANSpecifies the event name for pan.
PAN_ENDSpecifies the event name for panEnd.
MINIMIZESpecifies the event name for minimize.
NORMALIZESpecifies the event name for normalize.
MAXIMIZESpecifies the event name for maximize.
HIDESpecifies the event name for hide.
SHOWSpecifies the event name for show.
CLOSESpecifies the event name for close.
DESTROYSpecifies the event name for destroy.
REFRESHSpecifies the event name for refresh.
SIZESpecifies the event name for size.
SELECTSpecifies the event name for select.
FIREDSpecifies the event name for fired.
GETSpecifies the event name for get.
RECEIVESpecifies the event name for receive.
CONNECTSpecifies the event name for connect.
DISCONNECTSpecifies the event name for disconnect.
SUSPENDSpecifies the event name for suspend.
RESUMESpecifies the event name for suspend.
MARKSpecifies the event name for mark.
SESSIONSpecifies the event name for session.
ROOTSpecifies the event name for root.
POSTSpecifies the event name for post.
OPENSpecifies the event name for open.
SAVESpecifies the event name for open.
BEFORE_ADD_VERTEXSpecifies the event name for beforeAddVertex.
ADD_VERTEXSpecifies the event name for addVertex.
AFTER_ADD_VERTEXSpecifies the event name for afterAddVertex.
DONESpecifies the event name for done.
EXECUTESpecifies the event name for execute.
BEGIN_UPDATESpecifies the event name for beginUpdate.
END_UPDATESpecifies the event name for endUpdate.
BEFORE_UNDOSpecifies the event name for beforeUndo.
UNDOSpecifies the event name for undo.
REDOSpecifies the event name for redo.
CHANGESpecifies the event name for change.
NOTIFYSpecifies the event name for notify.
LAYOUT_CELLSSpecifies the event name for layoutCells.
CLICKSpecifies the event name for click.
SCALESpecifies the event name for scale.
TRANSLATESpecifies the event name for translate.
SCALE_AND_TRANSLATESpecifies the event name for scaleAndTranslate.
UPSpecifies the event name for up.
DOWNSpecifies the event name for down.
ADDSpecifies the event name for add.
CLEARSpecifies the event name for clear.
ADD_CELLSSpecifies the event name for addCells.
CELLS_ADDEDSpecifies the event name for cellsAdded.
MOVE_CELLSSpecifies the event name for moveCells.
CELLS_MOVEDSpecifies the event name for cellsMoved.
RESIZE_CELLSSpecifies the event name for resizeCells.
CELLS_RESIZEDSpecifies the event name for cellsResized.
TOGGLE_CELLSSpecifies the event name for toggleCells.
CELLS_TOGGLEDSpecifies the event name for cellsToggled.
ORDER_CELLSSpecifies the event name for orderCells.
CELLS_ORDEREDSpecifies the event name for cellsOrdered.
REMOVE_CELLSSpecifies the event name for removeCells.
CELLS_REMOVEDSpecifies the event name for cellsRemoved.
GROUP_CELLSSpecifies the event name for groupCells.
UNGROUP_CELLSSpecifies the event name for ungroupCells.
REMOVE_CELLS_FROM_PARENTSpecifies the event name for removeCellsFromParent.
FOLD_CELLSSpecifies the event name for foldCells.
CELLS_FOLDEDSpecifies the event name for cellsFolded.
ALIGN_CELLSSpecifies the event name for alignCells.
LABEL_CHANGEDSpecifies the event name for labelChanged.
CONNECT_CELLSpecifies the event name for connectCell.
CELL_CONNECTEDSpecifies the event name for cellConnected.
SPLIT_EDGESpecifies the event name for splitEdge.
FLIP_EDGESpecifies the event name for flipEdge.
START_EDITINGSpecifies the event name for startEditing.
ADD_OVERLAYSpecifies the event name for addOverlay.
REMOVE_OVERLAYSpecifies the event name for removeOverlay.
UPDATE_CELL_SIZESpecifies the event name for updateCellSize.
ESCAPESpecifies the event name for escape.
CLICKSpecifies the event name for click.
DOUBLE_CLICKSpecifies the event name for doubleClick.

Variables

@@ -61,6 +61,8 @@ if (browserType) {document.write("
");if (browserV

LABEL_HANDLE

Index for the label handle in an mxMouseEvent.  This should be a negative value that does not interfere with any possible handle indices.  Default is -1.

+

ROTATION_HANDLE

Index for the rotation handle in an mxMouseEvent.  This should be a negative value that does not interfere with any possible handle indices.  Default is -2.

+

MOUSE_DOWN

Specifies the event name for mouseDown.

MOUSE_MOVE

Specifies the event name for mouseMove.

diff --git a/docs/js-api/files/view/mxGraph-js.html b/docs/js-api/files/view/mxGraph-js.html index 9bbe0ebd1..785825785 100644 --- a/docs/js-api/files/view/mxGraph-js.html +++ b/docs/js-api/files/view/mxGraph-js.html @@ -11,8 +11,8 @@ if (browserType) {document.write("
");if (browserV -

mxGraph

Extends mxEventSource to implement a graph component for the browser.  This is the main class of the package.  To activate panning and connections use setPanning and setConnectable.  For rubberband selection you must create a new instance of mxRubberband.  The following listeners are added to mouseListeners by default:

These listeners will be called in the above order if they are enabled.

Background Images

To display a background image, set the image, image width and image height using setBackgroundImage.  If one of the above values has changed then the view’s mxGraphView.validate should be invoked.

Cell Images

To use images in cells, a shape must be specified in the default vertex style (or any named style).  Possible shapes are mxConstants.SHAPE_IMAGE and mxConstants.SHAPE_LABEL.  The code to change the shape used in the default vertex style, the following code is used:

var style = graph.getStylesheet().getDefaultVertexStyle();
-style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_IMAGE;

For the default vertex style, the image to be displayed can be specified in a cell’s style using the mxConstants.STYLE_IMAGE key and the image URL as a value, for example:

image=http://www.example.com/image.gif

For a named style, the the stylename must be the first element of the cell style:

stylename;image=http://www.example.com/image.gif

A cell style can have any number of key=value pairs added, divided by a semicolon as follows:

[stylename;|key=value;]

Labels

The cell labels are defined by getLabel which uses convertValueToString if labelsVisible is true.  If a label must be rendered as HTML markup, then isHtmlLabel should return true for the respective cell.  If all labels contain HTML markup, htmlLabels can be set to true.  NOTE: Enabling HTML labels carries a possible security risk (see the section on security in the manual).

If wrapping is needed for a label, then isHtmlLabel and isWrapping must return true for the cell whose label should be wrapped.  See isWrapping for an example.

If clipping is needed to keep the rendering of a HTML label inside the bounds of its vertex, then <isClipping> should return true for the respective cell.

By default, edge labels are movable and vertex labels are fixed.  This can be changed by setting edgeLabelsMovable and vertexLabelsMovable, or by overriding isLabelMovable.

In-place Editing

In-place editing is started with a doubleclick or by typing F2.  Programmatically, <edit> is used to check if the cell is editable (isCellEditable) and call startEditingAtCell, which invokes mxCellEditor.startEditing.  The editor uses the value returned by getEditingValue as the editing value.

After in-place editing, labelChanged is called, which invokes mxGraphModel.setValue, which in turn calls mxGraphModel.valueForCellChanged via mxValueChange.

The event that triggers in-place editing is passed through to the cellEditor, which may take special actions depending on the type of the event or mouse location, and is also passed to getEditingValue.  The event is then passed back to the event processing functions which can perform specific actions based on the trigger event.

Tooltips

Tooltips are implemented by getTooltip, which calls getTooltipForCell if a cell is under the mousepointer.  The default implementation checks if the cell has a getTooltip function and calls it if it exists.  Hence, in order to provide custom tooltips, the cell must provide a getTooltip function, or one of the two above functions must be overridden.

Typically, for custom cell tooltips, the latter function is overridden as follows:

graph.getTooltipForCell = function(cell)
+

mxGraph

Extends mxEventSource to implement a graph component for the browser.  This is the main class of the package.  To activate panning and connections use setPanning and setConnectable.  For rubberband selection you must create a new instance of mxRubberband.  The following listeners are added to mouseListeners by default:

These listeners will be called in the above order if they are enabled.

Background Images

To display a background image, set the image, image width and image height using setBackgroundImage.  If one of the above values has changed then the view’s mxGraphView.validate should be invoked.

Cell Images

To use images in cells, a shape must be specified in the default vertex style (or any named style).  Possible shapes are mxConstants.SHAPE_IMAGE and mxConstants.SHAPE_LABEL.  The code to change the shape used in the default vertex style, the following code is used:

var style = graph.getStylesheet().getDefaultVertexStyle();
+style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_IMAGE;

For the default vertex style, the image to be displayed can be specified in a cell’s style using the mxConstants.STYLE_IMAGE key and the image URL as a value, for example:

image=http://www.example.com/image.gif

For a named style, the the stylename must be the first element of the cell style:

stylename;image=http://www.example.com/image.gif

A cell style can have any number of key=value pairs added, divided by a semicolon as follows:

[stylename;|key=value;]

Labels

The cell labels are defined by getLabel which uses convertValueToString if labelsVisible is true.  If a label must be rendered as HTML markup, then isHtmlLabel should return true for the respective cell.  If all labels contain HTML markup, htmlLabels can be set to true.  NOTE: Enabling HTML labels carries a possible security risk (see the section on security in the manual).

If wrapping is needed for a label, then isHtmlLabel and isWrapping must return true for the cell whose label should be wrapped.  See isWrapping for an example.

If clipping is needed to keep the rendering of a HTML label inside the bounds of its vertex, then <isClipping> should return true for the respective cell.

By default, edge labels are movable and vertex labels are fixed.  This can be changed by setting edgeLabelsMovable and vertexLabelsMovable, or by overriding isLabelMovable.

In-place Editing

In-place editing is started with a doubleclick or by typing F2.  Programmatically, <edit> is used to check if the cell is editable (isCellEditable) and call startEditingAtCell, which invokes mxCellEditor.startEditing.  The editor uses the value returned by getEditingValue as the editing value.

After in-place editing, labelChanged is called, which invokes mxGraphModel.setValue, which in turn calls mxGraphModel.valueForCellChanged via mxValueChange.

The event that triggers in-place editing is passed through to the cellEditor, which may take special actions depending on the type of the event or mouse location, and is also passed to getEditingValue.  The event is then passed back to the event processing functions which can perform specific actions based on the trigger event.

Tooltips

Tooltips are implemented by getTooltip, which calls getTooltipForCell if a cell is under the mousepointer.  The default implementation checks if the cell has a getTooltip function and calls it if it exists.  Hence, in order to provide custom tooltips, the cell must provide a getTooltip function, or one of the two above functions must be overridden.

Typically, for custom cell tooltips, the latter function is overridden as follows:

graph.getTooltipForCell = function(cell)
 {
   var label = this.convertValueToString(cell);
   return 'Tooltip for '+label;
@@ -22,21 +22,21 @@ style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_IMAGE;

F var label = this.convertValueToString(cell); return 'Tooltip for '+label; } -]]></add>

”this” refers to the graph in the implementation, so for example to check if a cell is an edge, you use this.getModel().isEdge(cell)

For replacing the default implementation of getTooltipForCell (rather than replacing the function on a specific instance), the following code should be used after loading the JavaScript files, but before creating a new mxGraph instance using mxGraph:

mxGraph.prototype.getTooltipForCell = function(cell)
+]]></add>

”this” refers to the graph in the implementation, so for example to check if a cell is an edge, you use this.getModel().isEdge(cell)

For replacing the default implementation of getTooltipForCell (rather than replacing the function on a specific instance), the following code should be used after loading the JavaScript files, but before creating a new mxGraph instance using mxGraph:

mxGraph.prototype.getTooltipForCell = function(cell)
 {
   var label = this.convertValueToString(cell);
   return 'Tooltip for '+label;
-}

Shapes & Styles

The implementation of new shapes is demonstrated in the examples.  We’ll assume that we have implemented a custom shape with the name BoxShape which we want to use for drawing vertices.  To use this shape, it must first be registered in the cell renderer as follows:

graph.cellRenderer.registerShape('box', BoxShape);

The code registers the BoxShape constructor under the name box in the cell renderer of the graph.  The shape can now be referenced using the shape-key in a style definition.  (The cell renderer contains a set of additional shapes, namely one for each constant with a SHAPE-prefix in mxConstants.)

Styles are a collection of key, value pairs and a stylesheet is a collection of named styles.  The names are referenced by the cellstyle, which is stored in mxCell.style with the following format: [stylename;|key=value;].  The string is resolved to a collection of key, value pairs, where the keys are overridden with the values in the string.

When introducing a new shape, the name under which the shape is registered must be used in the stylesheet.  There are three ways of doing this:

  • By changing the default style, so that all vertices will use the new shape
  • By defining a new style, so that only vertices with the respective cellstyle will use the new shape
  • By using shape=box in the cellstyle’s optional list of key, value pairs to be overridden

In the first case, the code to fetch and modify the default style for vertices is as follows:

var style = graph.getStylesheet().getDefaultVertexStyle();
+}

Shapes & Styles

The implementation of new shapes is demonstrated in the examples.  We’ll assume that we have implemented a custom shape with the name BoxShape which we want to use for drawing vertices.  To use this shape, it must first be registered in the cell renderer as follows:

graph.cellRenderer.registerShape('box', BoxShape);

The code registers the BoxShape constructor under the name box in the cell renderer of the graph.  The shape can now be referenced using the shape-key in a style definition.  (The cell renderer contains a set of additional shapes, namely one for each constant with a SHAPE-prefix in mxConstants.)

Styles are a collection of key, value pairs and a stylesheet is a collection of named styles.  The names are referenced by the cellstyle, which is stored in mxCell.style with the following format: [stylename;|key=value;].  The string is resolved to a collection of key, value pairs, where the keys are overridden with the values in the string.

When introducing a new shape, the name under which the shape is registered must be used in the stylesheet.  There are three ways of doing this:

  • By changing the default style, so that all vertices will use the new shape
  • By defining a new style, so that only vertices with the respective cellstyle will use the new shape
  • By using shape=box in the cellstyle’s optional list of key, value pairs to be overridden

In the first case, the code to fetch and modify the default style for vertices is as follows:

var style = graph.getStylesheet().getDefaultVertexStyle();
 style[mxConstants.STYLE_SHAPE] = 'box';

The code takes the default vertex style, which is used for all vertices that do not have a specific cellstyle, and modifies the value for the shape-key in-place to use the new BoxShape for drawing vertices.  This is done by assigning the box value in the second line, which refers to the name of the BoxShape in the cell renderer.

In the second case, a collection of key, value pairs is created and then added to the stylesheet under a new name.  In order to distinguish the shapename and the stylename we’ll use boxstyle for the stylename:

var style = new Object();
 style[mxConstants.STYLE_SHAPE] = 'box';
 style[mxConstants.STYLE_STROKECOLOR] = '#000000';
 style[mxConstants.STYLE_FONTCOLOR] = '#000000';
 graph.getStylesheet().putCellStyle('boxstyle', style);

The code adds a new style with the name boxstyle to the stylesheet.  To use this style with a cell, it must be referenced from the cellstyle as follows:

var vertex = graph.insertVertex(parent, null, 'Hello, World!', 20, 20, 80, 20,
-             'boxstyle');

To summarize, each new shape must be registered in the mxCellRenderer with a unique name.  That name is then used as the value of the shape-key in a default or custom style.  If there are multiple custom shapes, then there should be a separate style for each shape.

Inheriting Styles

For fill-, stroke-, gradient- and indicatorColors special keywords can be used.  The inherit keyword for one of these colors will inherit the color for the same key from the parent cell.  The swimlane keyword does the same, but inherits from the nearest swimlane in the ancestor hierarchy.  Finally, the indicated keyword will use the color of the indicator as the color for the given key.

Scrollbars

The <containers> overflow CSS property defines if scrollbars are used to display the graph.  For values of ‘auto’ or ‘scroll’, the scrollbars will be shown.  Note that the resizeContainer flag is normally not used together with scrollbars, as it will resize the container to match the size of the graph after each change.

Multiplicities and Validation

To control the possible connections in mxGraph, getEdgeValidationError is used.  The default implementation of the function uses multiplicities, which is an array of mxMultiplicity.  Using this class allows to establish simple multiplicities, which are enforced by the graph.

The mxMultiplicity uses <mxCell.is> to determine for which terminals it applies.  The default implementation of <mxCell.is> works with DOM nodes (XML nodes) and checks if the given type parameter matches the nodeName of the node (case insensitive).  Optionally, an attributename and value can be specified which are also checked.

getEdgeValidationError is called whenever the connectivity of an edge changes.  It returns an empty string or an error message if the edge is invalid or null if the edge is valid.  If the returned string is not empty then it is displayed as an error message.

mxMultiplicity allows to specify the multiplicity between a terminal and its possible neighbors.  For example, if any rectangle may only be connected to, say, a maximum of two circles you can add the following rule to multiplicities:

graph.multiplicities.push(new mxMultiplicity(
+             'boxstyle');

To summarize, each new shape must be registered in the mxCellRenderer with a unique name.  That name is then used as the value of the shape-key in a default or custom style.  If there are multiple custom shapes, then there should be a separate style for each shape.

Inheriting Styles

For fill-, stroke-, gradient- and indicatorColors special keywords can be used.  The inherit keyword for one of these colors will inherit the color for the same key from the parent cell.  The swimlane keyword does the same, but inherits from the nearest swimlane in the ancestor hierarchy.  Finally, the indicated keyword will use the color of the indicator as the color for the given key.

Scrollbars

The <containers> overflow CSS property defines if scrollbars are used to display the graph.  For values of ‘auto’ or ‘scroll’, the scrollbars will be shown.  Note that the resizeContainer flag is normally not used together with scrollbars, as it will resize the container to match the size of the graph after each change.

Multiplicities and Validation

To control the possible connections in mxGraph, getEdgeValidationError is used.  The default implementation of the function uses multiplicities, which is an array of mxMultiplicity.  Using this class allows to establish simple multiplicities, which are enforced by the graph.

The mxMultiplicity uses <mxCell.is> to determine for which terminals it applies.  The default implementation of <mxCell.is> works with DOM nodes (XML nodes) and checks if the given type parameter matches the nodeName of the node (case insensitive).  Optionally, an attributename and value can be specified which are also checked.

getEdgeValidationError is called whenever the connectivity of an edge changes.  It returns an empty string or an error message if the edge is invalid or null if the edge is valid.  If the returned string is not empty then it is displayed as an error message.

mxMultiplicity allows to specify the multiplicity between a terminal and its possible neighbors.  For example, if any rectangle may only be connected to, say, a maximum of two circles you can add the following rule to multiplicities:

graph.multiplicities.push(new mxMultiplicity(
   true, 'rectangle', null, null, 0, 2, ['circle'],
   'Only 2 targets allowed',
-  'Only shape targets allowed'));

This will display the first error message whenever a rectangle is connected to more than two circles and the second error message if a rectangle is connected to anything but a circle.

For certain multiplicities, such as a minimum of 1 connection, which cannot be enforced at cell creation time (unless the cell is created together with the connection), mxGraph offers <validate> which checks all multiplicities for all cells and displays the respective error messages in an overlay icon on the cells.

If a cell is collapsed and contains validation errors, a respective warning icon is attached to the collapsed cell.

Auto-Layout

For automatic layout, the <getLayout> hook is provided in mxLayoutManager.  It can be overridden to return a layout algorithm for the children of a given cell.

Unconnected edges

The default values for all switches are designed to meet the requirements of general diagram drawing applications.  A very typical set of settings to avoid edges that are not connected is the following:

graph.setAllowDanglingEdges(false);
-graph.setDisconnectOnMove(false);

Setting the cloneInvalidEdges switch to true is optional.  This switch controls if edges are inserted after a copy, paste or clone-drag if they are invalid.  For example, edges are invalid if copied or control-dragged without having selected the corresponding terminals and allowDanglingEdges is false, in which case the edges will not be cloned if the switch is false.

Output

To produce an XML representation for a diagram, the following code can be used.

var enc = new mxCodec(mxUtils.createXmlDocument());
+  'Only shape targets allowed'));

This will display the first error message whenever a rectangle is connected to more than two circles and the second error message if a rectangle is connected to anything but a circle.

For certain multiplicities, such as a minimum of 1 connection, which cannot be enforced at cell creation time (unless the cell is created together with the connection), mxGraph offers <validate> which checks all multiplicities for all cells and displays the respective error messages in an overlay icon on the cells.

If a cell is collapsed and contains validation errors, a respective warning icon is attached to the collapsed cell.

Auto-Layout

For automatic layout, the <getLayout> hook is provided in mxLayoutManager.  It can be overridden to return a layout algorithm for the children of a given cell.

Unconnected edges

The default values for all switches are designed to meet the requirements of general diagram drawing applications.  A very typical set of settings to avoid edges that are not connected is the following:

graph.setAllowDanglingEdges(false);
+graph.setDisconnectOnMove(false);

Setting the cloneInvalidEdges switch to true is optional.  This switch controls if edges are inserted after a copy, paste or clone-drag if they are invalid.  For example, edges are invalid if copied or control-dragged without having selected the corresponding terminals and allowDanglingEdges is false, in which case the edges will not be cloned if the switch is false.

Output

To produce an XML representation for a diagram, the following code can be used.

var enc = new mxCodec(mxUtils.createXmlDocument());
 var node = enc.encode(graph.getModel());

This will produce an XML node than can be handled using the DOM API or turned into a string representation using the following code:

var xml = mxUtils.getXml(node);

To obtain a formatted string, mxUtils.getPrettyXml can be used instead.

This string can now be stored in a local persistent storage (for example using Google Gears) or it can be passed to a backend using mxUtils.post as follows.  The url variable is the URL of the Java servlet, PHP page or HTTP handler, depending on the server.

var xmlString = encodeURIComponent(mxUtils.getXml(node));
 mxUtils.post(url, 'xml='+xmlString, function(req)
 {
@@ -44,59 +44,59 @@ mxUtils.post(url, 'xml='+xmlString, function(req)
 });

Input

To load an XML representation of a diagram into an existing graph object mxUtils.load can be used as follows.  The url variable is the URL of the Java servlet, PHP page or HTTP handler that produces the XML string.

var xmlDoc = mxUtils.load(url).getXml();
 var node = xmlDoc.documentElement;
 var dec = new mxCodec(node.ownerDocument);
-dec.decode(node, graph.getModel());

For creating a page that loads the client and a diagram using a single request please refer to the deployment examples in the backends.

Functional dependencies

Resources

resources/graphLanguage resources for mxGraph
Summary
mxGraphExtends mxEventSource to implement a graph component for the browser.
Events
mxEvent.ROOTFires if the root in the model has changed.
mxEvent.ALIGN_CELLSFires between begin- and endUpdate in alignCells.
mxEvent.FLIP_EDGEFires between begin- and endUpdate in flipEdge.
mxEvent.ORDER_CELLSFires between begin- and endUpdate in orderCells.
mxEvent.CELLS_ORDEREDFires between begin- and endUpdate in cellsOrdered.
mxEvent.GROUP_CELLSFires between begin- and endUpdate in groupCells.
mxEvent.UNGROUP_CELLSFires between begin- and endUpdate in ungroupCells.
mxEvent.REMOVE_CELLS_FROM_PARENTFires between begin- and endUpdate in removeCellsFromParent.
mxEvent.ADD_CELLSFires between begin- and endUpdate in addCells.
mxEvent.CELLS_ADDEDFires between begin- and endUpdate in cellsAdded.
mxEvent.REMOVE_CELLSFires between begin- and endUpdate in removeCells.
mxEvent.CELLS_REMOVEDFires between begin- and endUpdate in cellsRemoved.
mxEvent.SPLIT_EDGEFires between begin- and endUpdate in splitEdge.
mxEvent.TOGGLE_CELLSFires between begin- and endUpdate in toggleCells.
mxEvent.FOLD_CELLSFires between begin- and endUpdate in foldCells.
mxEvent.CELLS_FOLDEDFires between begin- and endUpdate in cellsFolded.
mxEvent.UPDATE_CELL_SIZEFires between begin- and endUpdate in updateCellSize.
mxEvent.RESIZE_CELLSFires between begin- and endUpdate in resizeCells.
mxEvent.CELLS_RESIZEDFires between begin- and endUpdate in cellsResized.
mxEvent.MOVE_CELLSFires between begin- and endUpdate in moveCells.
mxEvent.CELLS_MOVEDFires between begin- and endUpdate in cellsMoved.
mxEvent.CONNECT_CELLFires between begin- and endUpdate in connectCell.
mxEvent.CELL_CONNECTEDFires between begin- and endUpdate in cellConnected.
mxEvent.REFRESHFires after refresh was executed.
mxEvent.CLICKFires in click after a click event.
mxEvent.DOUBLE_CLICKFires in dblClick after a double click.
mxEvent.SIZEFires after sizeDidChange was executed.
mxEvent.START_EDITINGFires before the in-place editor starts in startEditingAtCell.
mxEvent.LABEL_CHANGEDFires between begin- and endUpdate in cellLabelChanged.
mxEvent.ADD_OVERLAYFires after an overlay is added in addCellOverlay.
mxEvent.REMOVE_OVERLAYFires after an overlay is removed in removeCellOverlay and removeCellOverlays.
mxGraphConstructs a new mxGraph in the specified container.
EMPTY_ARRAYImmutable empty array instance.
Variables
mouseListenersHolds the mouse event listeners.
isMouseDownHolds the state of the mouse button.
modelHolds the mxGraphModel that contains the cells to be displayed.
viewHolds the mxGraphView that caches the mxCellStates for the cells.
stylesheetHolds the mxStylesheet that defines the appearance of the cells.
selectionModelHolds the mxGraphSelectionModel that models the current selection.
cellEditorHolds the mxCellEditor that is used as the in-place editing.
cellRendererHolds the mxCellRenderer for rendering the cells in the graph.
multiplicitiesAn array of mxMultiplicities describing the allowed connections in a graph.
renderHintRenderHint as it was passed to the constructor.
dialectDialect to be used for drawing the graph.
gridSizeSpecifies the grid size.
gridEnabledSpecifies if the grid is enabled.
portsEnabledSpecifies if ports are enabled.
doubleTapEnabledSpecifies if double taps on touch-based devices should be handled.
doubleTapTimeoutSpecifies the timeout for double taps.
doubleTapToleranceSpecifies the tolerance for double taps.
lastTouchXHolds the x-coordinate of the last touch event for double tap detection.
lastTouchXHolds the y-coordinate of the last touch event for double tap detection.
lastTouchTimeHolds the time of the last touch event for double click detection.
gestureEnabledSpecifies if the handleGesture method should be invoked.
toleranceTolerance for a move to be handled as a single click.
defaultOverlapValue returned by getOverlap if isAllowOverlapParent returns true for the given cell.
defaultParentSpecifies the default parent to be used to insert new cells.
alternateEdgeStyleSpecifies the alternate edge style to be used if the main control point on an edge is being doubleclicked.
backgroundImageSpecifies the mxImage to be returned by getBackgroundImage.
pageVisibleSpecifies if the background page should be visible.
pageBreaksVisibleSpecifies if a dashed line should be drawn between multiple pages.
pageBreakColorSpecifies the color for page breaks.
pageBreakDashedSpecifies the page breaks should be dashed.
minPageBreakDistSpecifies the minimum distance for page breaks to be visible.
preferPageSizeSpecifies if the graph size should be rounded to the next page number in sizeDidChange.
pageFormatSpecifies the page format for the background page.
pageScaleSpecifies the scale of the background page.
enabledSpecifies the return value for isEnabled.
escapeEnabledSpecifies if mxKeyHandler should invoke escape when the escape key is pressed.
invokesStopCellEditingIf true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
enterStopsCellEditingIf true, pressing the enter key without pressing control or shift will stop editing and accept the new value.
useScrollbarsForPanningSpecifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
exportEnabledSpecifies the return value for canExportCell.
importEnabledSpecifies the return value for canImportCell.
cellsLockedSpecifies the return value for isCellLocked.
cellsCloneableSpecifies the return value for isCellCloneable.
foldingEnabledSpecifies if folding (collapse and expand via an image icon in the graph should be enabled).
cellsEditableSpecifies the return value for isCellEditable.
cellsDeletableSpecifies the return value for isCellDeletable.
cellsMovableSpecifies the return value for isCellMovable.
edgeLabelsMovableSpecifies the return value for edges in isLabelMovable.
vertexLabelsMovableSpecifies the return value for vertices in isLabelMovable.
dropEnabledSpecifies the return value for isDropEnabled.
splitEnabledSpecifies if dropping onto edges should be enabled.
cellsResizableSpecifies the return value for isCellResizable.
cellsBendableSpecifies the return value for isCellsBendable.
cellsSelectableSpecifies the return value for isCellSelectable.
cellsDisconnectableSpecifies the return value for <isCellDisconntable>.
autoSizeCellsSpecifies if the graph should automatically update the cell size after an edit.
autoScrollSpecifies if the graph should automatically scroll if the mouse goes near the container edge while dragging.
timerAutoScrollSpecifies if timer-based autoscrolling should be used via mxPanningManager.
allowAutoPanningSpecifies if panning via panGraph should be allowed to implement autoscroll if no scrollbars are available in scrollPointToVisible.
ignoreScrollbarsSpecifies if the graph should automatically scroll regardless of the scrollbars.
autoExtendSpecifies if the size of the graph should be automatically extended if the mouse goes near the container edge while dragging.
maximumGraphBoundsmxRectangle that specifies the area in which all cells in the diagram should be placed.
minimumGraphSizemxRectangle that specifies the minimum size of the graph.
minimumContainerSizemxRectangle that specifies the minimum size of the <container> if resizeContainer is true.
maximumContainerSizemxRectangle that specifies the maximum size of the container if resizeContainer is true.
resizeContainerSpecifies if the container should be resized to the graph size when the graph size has changed.
borderBorder to be added to the bottom and right side when the container is being resized after the graph has been changed.
orderedSpecifies if the display should reflect the order of the cells in the model.
keepEdgesInForegroundSpecifies if edges should appear in the foreground regardless of their order in the model.
keepEdgesInBackgroundSpecifies if edges should appear in the background regardless of their order in the model.
allowNegativeCoordinatesSpecifies if negative coordinates for vertices are allowed.
constrainChildrenSpecifies the return value for isConstrainChildren.
extendParentsSpecifies if a parent should contain the child bounds after a resize of the child.
extendParentsOnAddSpecifies if parents should be extended according to the extendParents switch if cells are added.
collapseToPreferredSizeSpecifies if the cell size should be changed to the preferred size when a cell is first collapsed.
zoomFactorSpecifies the factor used for zoomIn and zoomOut.
keepSelectionVisibleOnZoomSpecifies if the viewport should automatically contain the selection cells after a zoom operation.
centerZoomSpecifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
resetViewOnRootChangeSpecifies if the scale and translate should be reset if the root changes in the model.
resetEdgesOnResizeSpecifies if edge control points should be reset after the resize of a connected cell.
resetEdgesOnMoveSpecifies if edge control points should be reset after the move of a connected cell.
resetEdgesOnConnectSpecifies if edge control points should be reset after the the edge has been reconnected.
allowLoopsSpecifies if loops (aka self-references) are allowed.
defaultLoopStylemxEdgeStyle to be used for loops.
multigraphSpecifies if multiple edges in the same direction between the same pair of vertices are allowed.
connectableEdgesSpecifies if edges are connectable.
allowDanglingEdgesSpecifies if edges with disconnected terminals are allowed in the graph.
cloneInvalidEdgesSpecifies if edges that are cloned should be validated and only inserted if they are valid.
disconnectOnMoveSpecifies if edges should be disconnected from their terminals when they are moved.
labelsVisibleSpecifies if labels should be visible.
htmlLabelsSpecifies the return value for isHtmlLabel.
swimlaneSelectionEnabledSpecifies if swimlanes should be selectable via the content if the mouse is released.
swimlaneNestingSpecifies if nesting of swimlanes is allowed.
swimlaneIndicatorColorAttributeThe attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
imageBundlesHolds the list of image bundles.
minFitScaleSpecifies the minimum scale to be applied in fit.
maxFitScaleSpecifies the maximum scale to be applied in fit.
panDxCurrent horizontal panning value.
panDyCurrent vertical panning value.
collapsedImageSpecifies the mxImage to indicate a collapsed state.
expandedImageSpecifies the mxImage to indicate a expanded state.
warningImageSpecifies the mxImage for the image to be used to display a warning overlay.
alreadyConnectedResourceSpecifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
containsValidationErrorsResourceSpecifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
collapseExpandResourceSpecifies the resource key for the tooltip on the collapse/expand icon.
initInitializes the <container> and creates the respective datastructures.
createHandlersCreates the tooltip-, panning-, connection- and graph-handler (in this order).
createSelectionModelCreates a new mxGraphSelectionModel to be used in this graph.
createStylesheetCreates a new mxGraphSelectionModel to be used in this graph.
createGraphViewCreates a new mxGraphView to be used in this graph.
createCellRendererCreates a new mxCellRenderer to be used in this graph.
createCellEditorCreates a new mxCellEditor to be used in this graph.
getModelReturns the mxGraphModel that contains the cells.
getViewReturns the mxGraphView that contains the mxCellStates.
getStylesheetReturns the mxStylesheet that defines the style.
setStylesheetSets the mxStylesheet that defines the style.
getSelectionModelReturns the mxGraphSelectionModel that contains the selection.
setSelectionModelSets the <mxSelectionModel> that contains the selection.
getSelectionCellsForChangesReturns the cells to be selected for the given array of changes.
graphModelChangedCalled when the graph model changes.
getRemovedCellsForChangesReturns the cells that have been removed from the model.
processChangeProcesses the given change and invalidates the respective cached data in view.
removeStateForCellRemoves all cached information for the given cell and its descendants.
Overlays
addCellOverlayAdds an mxCellOverlay for the specified cell.
getCellOverlaysReturns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
removeCellOverlayRemoves and returns the given mxCellOverlay from the given cell.
removeCellOverlaysRemoves all mxCellOverlays from the given cell.
clearCellOverlaysRemoves all mxCellOverlays in the graph for the given cell and all its descendants.
setCellWarningCreates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
In-place editing
startEditingCalls startEditingAtCell using the given cell or the first selection cell.
startEditingAtCellFires a startEditing event and invokes mxCellEditor.startEditing on <editor>.
getEditingValueReturns the initial value for in-place editing.
stopEditingStops the current editing.
labelChangedSets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
cellLabelChangedSets the new label for a cell.
Event processing
escapeProcesses an escape keystroke.
clickProcesses a singleclick on an optional cell and fires a click event.
dblClickProcesses a doubleclick on an optional cell and fires a <dblclick> event.
scrollPointToVisibleScrolls the graph to the given point, extending the graph container if specified.
createPanningManagerCreates and returns an mxPanningManager.
getOffsetSizeReturns the actual size of the the viewport minus padding and border sizes.
getPreferredPageSizeReturns the preferred size of the background page if preferPageSize is true.
sizeDidChangeCalled when the size of the graph has changed.
redrawPageBreaksInvokes from sizeDidChange to redraw the page breaks.
Cell styles
getCellStyleReturns an array of key, value pairs representing the cell style for the given cell.
postProcessCellStyleTries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
setCellStyleSets the style of the specified cells.
toggleCellStyleToggles the boolean value for the given key in the style of the given cell.
toggleCellStylesToggles the boolean value for the given key in the style of the given cells.
setCellStylesSets the key to value in the styles of the given cells.
toggleCellStyleFlagsToggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlagsSets or toggles the given bit for the given key in the styles of the specified cells.
Cell alignment and orientation
alignCellsAligns the given cells vertically or horizontally according to the given alignment using the optional parameter as the coordinate.
flipEdgeToggles the style of the given edge between null (or empty) and alternateEdgeStyle.
addImageBundleAdds the specified mxImageBundle.
removeImageBundleRemoves the specified mxImageBundle.
getImageFromBundlesSearches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
Order
orderCellsMoves the given cells to the front or back.
cellsOrderedMoves the given cells to the front or back.
Grouping
groupCellsAdds the cells into the given group.
getCellsForGroupReturns the cells with the same parent as the first cell in the given array.
getBoundsForGroupReturns the bounds to be used for the given group and children.
createGroupCellHook for creating the group cell to hold the given array of mxCells if no group cell was given to the <group> function.
ungroupCellsUngroups the given cells by moving the children the children to their parents parent and removing the empty groups.
removeCellsFromParentRemoves the specified cells from their parents and adds them to the default parent.
updateGroupBoundsUpdates the bounds of the given array of groups so that it includes all child vertices.
Cell cloning, insertion and removal
cloneCellsReturns the clones for the given cells.
insertVertexAdds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
createVertexHook method that creates the new vertex for insertVertex.
insertEdgeAdds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
createEdgeHook method that creates the new edge for insertEdge.
addEdgeAdds the edge to the parent and connects it to the given source and target terminals.
addCellAdds the cell to the parent and connects it to the given source and target terminals.
addCellsAdds the cells to the parent at the given index, connecting each cell to the optional source and target terminal.
cellsAddedAdds the specified cells to the given parent.
removeCellsRemoves the given cells from the graph including all connected edges if includeEdges is true.
cellsRemovedRemoves the given cells from the model.
splitEdgeSplits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
Cell visibility
toggleCellsSets the visible state of the specified cells and all connected edges if includeEdges is true.
cellsToggledSets the visible state of the specified cells.
Folding
foldCellsSets the collapsed state of the specified cells and all descendants if recurse is true.
cellsFoldedSets the collapsed state of the specified cells.
swapBoundsSwaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
updateAlternateBoundsUpdates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
addAllEdgesReturns an array with the given cells and all edges that are connected to a cell or one of its descendants.
getAllEdgesReturns all edges connected to the given cells or its descendants.
Cell sizing
updateCellSizeUpdates the size of the given cell in the model using cellSizeUpdated.
cellSizeUpdatedUpdates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
getPreferredSizeForCellReturns the preferred width and height of the given mxCell as an mxRectangle.
handleGestureInvokes if a gesture event has been detected on a cell state.
resizeCellSets the bounds of the given cell using resizeCells.
resizeCellsSets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
cellsResizedSets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
extendParentResizes the parents recursively so that they contain the complete area of the resized child cell.
Cell moving
importCellsClones and inserts the given cells into the graph using the move method and returns the inserted cells.
moveCellsMoves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
cellsMovedMoves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
translateCellTranslates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
getCellContainmentAreaReturns the mxRectangle inside which a cell is to be kept.
getMaximumGraphBoundsReturns the bounds inside which the diagram should be kept as an mxRectangle.
constrainChildKeeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
resetEdgesResets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
resetEdgeResets the control points of the given edge.
Cell connecting and connection constraints
getAllConnectionConstraintsReturns an array of all mxConnectionConstraints for the given terminal.
getConnectionConstraintReturns an mxConnectionConstraint that describes the given connection point.
setConnectionConstraintSets the mxConnectionConstraint that describes the given connection point.
getConnectionPointReturns the nearest point in the list of absolute points or the center of the opposite terminal.
connectCellConnects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
cellConnectedSets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
disconnectGraphDisconnects the given edges from the terminals which are not in the given array.
Drilldown
getCurrentRootReturns the current root of the displayed cell hierarchy.
getTranslateForRootReturns the translation to be used if the given cell is the root cell as an mxPoint.
isPortReturns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
getTerminalForPortReturns the terminal to be used for a given port.
getChildOffsetForCellReturns the offset to be used for the cells inside the given cell.
enterGroupUses the given cell as the root of the displayed cell hierarchy.
exitGroupChanges the current root to the next valid root in the displayed cell hierarchy.
homeUses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
isValidRootReturns true if the given cell is a valid root for the cell display hierarchy.
Graph display
getGraphBoundsReturns the bounds of the visible graph.
getCellBoundsReturns the scaled, translated bounds for the given cell.
getBoundingBoxFromGeometryReturns the bounding box for the geometries of the vertices in the given array of cells.
refreshClears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
snapSnaps the given numeric value to the grid if gridEnabled is true.
panGraphShifts the graph display by the given amount.
zoomInZooms into the graph by zoomFactor.
zoomOutZooms out of the graph by zoomFactor.
zoomActualResets the zoom and panning in the view.
zoomToZooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
zoomZooms the graph using the given factor.
fitScales the graph such that the complete diagram fits into <container> and returns the current scale in the view.
scrollCellToVisiblePans the graph so that it shows the given cell.
scrollRectToVisiblePans the graph so that it shows the given rectangle.
getCellGeometryReturns the mxGeometry for the given cell.
isCellVisibleReturns true if the given cell is visible in this graph.
isCellCollapsedReturns true if the given cell is collapsed in this graph.
isCellConnectableReturns true if the given cell is connectable in this graph.
isOrthogonalReturns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
isLoopReturns true if the given cell state is a loop.
isCloneEventReturns true if the given event is a clone event.
isToggleEventReturns true if the given event is a toggle event.
isGridEnabledEventReturns true if the given mouse event should be aligned to the grid.
isConstrainedEventReturns true if the given mouse event should be aligned to the grid.
isForceMarqueeEventReturns true if the given event forces marquee selection.
Validation
validationAlertDisplays the given validation error in a dialog.
isEdgeValidChecks if the return value of getEdgeValidationError for the given arguments is null.
getEdgeValidationErrorReturns the validation error message to be displayed when inserting or changing an edges’ connectivity.
validateEdgeHook method for subclassers to return an error message for the given edge and terminals.
validateGraphValidates the graph by validating each descendant of the given cell or the root of the model.
getCellValidationErrorChecks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
validateCellHook method for subclassers to return an error message for the given cell and validation context.
Graph appearance
getBackgroundImageReturns the backgroundImage as an mxImage.
setBackgroundImageSets the new backgroundImage.
getFoldingImageReturns the mxImage used to display the collapsed state of the specified cell state.
convertValueToStringReturns the textual representation for the given cell.
getLabelReturns a string or DOM node that represents the label for the given cell.
isHtmlLabelReturns true if the label must be rendered as HTML markup.
isHtmlLabelsReturns htmlLabels.
setHtmlLabelsSets htmlLabels.
isWrappingThis enables wrapping for HTML labels.
isLabelClippedReturns true if the overflow portion of labels should be hidden.
getTooltipReturns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
getTooltipForCellReturns the string or DOM node to be used as the tooltip for the given cell.
getCursorForCellReturns the cursor value to be used for the CSS of the shape for the given cell.
getStartSizeReturns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
getImageReturns the image URL for the given cell state.
getVerticalAlignReturns the vertical alignment for the given cell state.
getIndicatorColorReturns the indicator color for the given cell state.
getIndicatorGradientColorReturns the indicator gradient color for the given cell state.
getIndicatorShapeReturns the indicator shape for the given cell state.
getIndicatorImageReturns the indicator image for the given cell state.
getBorderReturns the value of border.
setBorderSets the value of border.
isSwimlaneReturns true if the given cell is a swimlane in the graph.
Graph behaviour
isResizeContainerReturns resizeContainer.
setResizeContainerSets resizeContainer.
isEnabledReturns true if the graph is enabled.
setEnabledSpecifies if the graph should allow any interactions.
isEscapeEnabledReturns escapeEnabled.
setEscapeEnabledSets escapeEnabled.
isInvokesStopCellEditingReturns invokesStopCellEditing.
setInvokesStopCellEditingSets invokesStopCellEditing.
isEnterStopsCellEditingReturns enterStopsCellEditing.
setEnterStopsCellEditingSets enterStopsCellEditing.
isCellLockedReturns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
isCellsLockedReturns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
setLockedSets if any cell may be moved, sized, bended, disconnected, edited or selected.
getCloneableCellsReturns the cells which may be exported in the given array of cells.
isCellCloneableReturns true if the given cell is cloneable.
isCellsCloneableReturns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
setCellsCloneableSpecifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
getExportableCellsReturns the cells which may be exported in the given array of cells.
canExportCellReturns true if the given cell may be exported to the clipboard.
getImportableCellsReturns the cells which may be imported in the given array of cells.
canImportCellReturns true if the given cell may be imported from the clipboard.
isCellSelectableReturns true if the given cell is selectable.
isCellsSelectableReturns cellsSelectable.
setCellsSelectableSets cellsSelectable.
getDeletableCellsReturns the cells which may be exported in the given array of cells.
isCellDeletableReturns true if the given cell is moveable.
isCellsDeletableReturns cellsDeletable.
setCellsDeletableSets cellsDeletable.
isLabelMovableReturns true if the given edges’s label is moveable.
getMovableCellsReturns the cells which are movable in the given array of cells.
isCellMovableReturns true if the given cell is moveable.
isCellsMovableReturns cellsMovable.
setCellsMovableSpecifies if the graph should allow moving of cells.
isGridEnabledReturns gridEnabled as a boolean.
setGridEnabledSpecifies if the grid should be enabled.
isPortsEnabledReturns portsEnabled as a boolean.
setPortsEnabledSpecifies if the ports should be enabled.
getGridSizeReturns gridSize.
setGridSizeSets gridSize.
getToleranceReturns tolerance.
setToleranceSets tolerance.
isVertexLabelsMovableReturns vertexLabelsMovable.
setVertexLabelsMovableSets vertexLabelsMovable.
isEdgeLabelsMovableReturns edgeLabelsMovable.
isEdgeLabelsMovableSets edgeLabelsMovable.
isSwimlaneNestingReturns swimlaneNesting as a boolean.
setSwimlaneNestingSpecifies if swimlanes can be nested by drag and drop.
isSwimlaneSelectionEnabledReturns swimlaneSelectionEnabled as a boolean.
setSwimlaneSelectionEnabledSpecifies if swimlanes should be selected if the mouse is released over their content area.
isMultigraphReturns multigraph as a boolean.
setMultigraphSpecifies if the graph should allow multiple connections between the same pair of vertices.
isAllowLoopsReturns allowLoops as a boolean.
setAllowDanglingEdgesSpecifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
isAllowDanglingEdgesReturns allowDanglingEdges as a boolean.
setConnectableEdgesSpecifies if edges should be connectable.
isConnectableEdgesReturns connectableEdges as a boolean.
setCloneInvalidEdgesSpecifies if edges should be inserted when cloned but not valid wrt.
isCloneInvalidEdgesReturns cloneInvalidEdges as a boolean.
setAllowLoopsSpecifies if loops are allowed.
isDisconnectOnMoveReturns disconnectOnMove as a boolean.
setDisconnectOnMoveSpecifies if edges should be disconnected when moved.
isDropEnabledReturns dropEnabled as a boolean.
setDropEnabledSpecifies if the graph should allow dropping of cells onto or into other cells.
isSplitEnabledReturns splitEnabled as a boolean.
setSplitEnabledSpecifies if the graph should allow dropping of cells onto or into other cells.
isCellResizableReturns true if the given cell is resizable.
isCellsResizableReturns cellsResizable.
setCellsResizableSpecifies if the graph should allow resizing of cells.
isTerminalPointMovableReturns true if the given terminal point is movable.
isCellBendableReturns true if the given cell is bendable.
isCellsBendableReturns <cellsBenadable>.
setCellsBendableSpecifies if the graph should allow bending of edges.
isCellEditableReturns true if the given cell is editable.
isCellsEditableReturns cellsEditable.
setCellsEditableSpecifies if the graph should allow in-place editing for cell labels.
isCellDisconnectableReturns true if the given cell is disconnectable from the source or target terminal.
isCellsDisconnectableReturns cellsDisconnectable.
setCellsDisconnectableSets cellsDisconnectable.
isValidSourceReturns true if the given cell is a valid source for new connections.
isValidTargetReturns isValidSource for the given cell.
isValidConnectionReturns true if the given target cell is a valid target for source.
setConnectableSpecifies if the graph should allow new connections.
isConnectableReturns true if the <connectionHandler> is enabled.
setTooltipsSpecifies if tooltips should be enabled.
setPanningSpecifies if panning should be enabled.
isEditingReturns true if the given cell is currently being edited.
isAutoSizeCellReturns true if the size of the given cell should automatically be updated after a change of the label.
isAutoSizeCellsReturns autoSizeCells.
setAutoSizeCellsSpecifies if cell sizes should be automatically updated after a label change.
isExtendParentReturns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
isExtendParentsReturns extendParents.
setExtendParentsSets extendParents.
isExtendParentsOnAddReturns extendParentsOnAdd.
setExtendParentsOnAddSets extendParentsOnAdd.
isConstrainChildReturns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
isConstrainChildrenReturns constrainChildren.
setConstrainChildrenSets constrainChildren.
isConstrainChildrenReturns allowNegativeCoordinates.
setConstrainChildrenSets allowNegativeCoordinates.
getOverlapReturns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
isAllowOverlapParentReturns true if the given cell is allowed to be placed outside of the parents area.
getFoldableCellsReturns the cells which are movable in the given array of cells.
isCellFoldableReturns true if the given cell is foldable.
isValidDropTargetReturns true if the given cell is a valid drop target for the specified cells.
isSplitTargetReturns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
getDropTargetReturns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
Cell retrieval
getDefaultParentReturns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
setDefaultParentSets the defaultParent to the given cell.
getSwimlaneReturns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
getSwimlaneAtReturns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
getCellAtReturns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
intersectsReturns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
hitsSwimlaneContentReturns true if the given coordinate pair is inside the content are of the given swimlane.
getChildVerticesReturns the visible child vertices of the given parent.
getChildEdgesReturns the visible child edges of the given parent.
getChildCellsReturns the visible child vertices or edges in the given parent.
getConnectionsReturns all visible edges connected to the given cell without loops.
getIncomingEdgesReturns the visible incoming edges for the given cell.
getOutgoingEdgesReturns the visible outgoing edges for the given cell.
getEdgesReturns the incoming and/or outgoing edges for the given cell.
isValidAncestorReturns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
getOppositesReturns all distinct visible opposite cells for the specified terminal on the given edges.
getEdgesBetweenReturns the edges between the given source and target.
getPointForEventReturns an mxPoint representing the given event in the unscaled, non-translated coordinate space of <container> and applies the grid.
getCellsReturns the children of the given parent that are contained in the given rectangle (x, y, width, height).
getCellsBeyondReturns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
findTreeRootsReturns all children in the given parent which do not have incoming edges.
traverseTraverses the (directed) graph invoking the given function for each visited vertex and edge.
Selection
isCellSelectedReturns true if the given cell is selected.
isSelectionEmptyReturns true if the selection is empty.
clearSelectionClears the selection using mxGraphSelectionModel.clear.
getSelectionCountReturns the number of selected cells.
getSelectionCellReturns the first cell from the array of selected mxCells.
getSelectionCellsReturns the array of selected mxCells.
setSelectionCellSets the selection cell.
setSelectionCellsSets the selection cell.
addSelectionCellAdds the given cell to the selection.
addSelectionCellsAdds the given cells to the selection.
removeSelectionCellRemoves the given cell from the selection.
removeSelectionCellsRemoves the given cells from the selection.
selectRegionSelects and returns the cells inside the given rectangle for the specified event.
selectNextCellSelects the next cell.
selectPreviousCellSelects the previous cell.
selectParentCellSelects the parent cell.
selectChildCellSelects the first child cell.
selectCellSelects the next, parent, first child or previous cell, if all arguments are false.
selectAllSelects all children of the given parent cell or the children of the default parent if no parent is specified.
selectVerticesSelect all vertices inside the given parent or the default parent.
selectVerticesSelect all vertices inside the given parent or the default parent.
selectCellsSelects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
selectCellForEventSelects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
selectCellsForEventSelects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
Selection state
createHandlerCreates a new handler for the given cell state.
Graph events
addMouseListenerAdds a listener to the graph event dispatch loop.
removeMouseListenerRemoves the specified graph listener.
updateMouseEventSets the graphX and graphY properties if the given mxMouseEvent if required.
fireMouseEventDispatches the given event in the graph event dispatch loop.
destroyDestroys the graph and all its resources.
+dec.decode(node, graph.getModel());

For creating a page that loads the client and a diagram using a single request please refer to the deployment examples in the backends.

Functional dependencies

Resources

resources/graphLanguage resources for mxGraph
Summary
mxGraphExtends mxEventSource to implement a graph component for the browser.
Events
mxEvent.ROOTFires if the root in the model has changed.
mxEvent.ALIGN_CELLSFires between begin- and endUpdate in alignCells.
mxEvent.FLIP_EDGEFires between begin- and endUpdate in flipEdge.
mxEvent.ORDER_CELLSFires between begin- and endUpdate in orderCells.
mxEvent.CELLS_ORDEREDFires between begin- and endUpdate in cellsOrdered.
mxEvent.GROUP_CELLSFires between begin- and endUpdate in groupCells.
mxEvent.UNGROUP_CELLSFires between begin- and endUpdate in ungroupCells.
mxEvent.REMOVE_CELLS_FROM_PARENTFires between begin- and endUpdate in removeCellsFromParent.
mxEvent.ADD_CELLSFires between begin- and endUpdate in addCells.
mxEvent.CELLS_ADDEDFires between begin- and endUpdate in cellsAdded.
mxEvent.REMOVE_CELLSFires between begin- and endUpdate in removeCells.
mxEvent.CELLS_REMOVEDFires between begin- and endUpdate in cellsRemoved.
mxEvent.SPLIT_EDGEFires between begin- and endUpdate in splitEdge.
mxEvent.TOGGLE_CELLSFires between begin- and endUpdate in toggleCells.
mxEvent.FOLD_CELLSFires between begin- and endUpdate in foldCells.
mxEvent.CELLS_FOLDEDFires between begin- and endUpdate in cellsFolded.
mxEvent.UPDATE_CELL_SIZEFires between begin- and endUpdate in updateCellSize.
mxEvent.RESIZE_CELLSFires between begin- and endUpdate in resizeCells.
mxEvent.CELLS_RESIZEDFires between begin- and endUpdate in cellsResized.
mxEvent.MOVE_CELLSFires between begin- and endUpdate in moveCells.
mxEvent.CELLS_MOVEDFires between begin- and endUpdate in cellsMoved.
mxEvent.CONNECT_CELLFires between begin- and endUpdate in connectCell.
mxEvent.CELL_CONNECTEDFires between begin- and endUpdate in cellConnected.
mxEvent.REFRESHFires after refresh was executed.
mxEvent.CLICKFires in click after a click event.
mxEvent.DOUBLE_CLICKFires in dblClick after a double click.
mxEvent.SIZEFires after sizeDidChange was executed.
mxEvent.START_EDITINGFires before the in-place editor starts in startEditingAtCell.
mxEvent.LABEL_CHANGEDFires between begin- and endUpdate in cellLabelChanged.
mxEvent.ADD_OVERLAYFires after an overlay is added in addCellOverlay.
mxEvent.REMOVE_OVERLAYFires after an overlay is removed in removeCellOverlay and removeCellOverlays.
mxGraphConstructs a new mxGraph in the specified container.
EMPTY_ARRAYImmutable empty array instance.
Variables
mouseListenersHolds the mouse event listeners.
isMouseDownHolds the state of the mouse button.
modelHolds the mxGraphModel that contains the cells to be displayed.
viewHolds the mxGraphView that caches the mxCellStates for the cells.
stylesheetHolds the mxStylesheet that defines the appearance of the cells.
selectionModelHolds the mxGraphSelectionModel that models the current selection.
cellEditorHolds the mxCellEditor that is used as the in-place editing.
cellRendererHolds the mxCellRenderer for rendering the cells in the graph.
multiplicitiesAn array of mxMultiplicities describing the allowed connections in a graph.
renderHintRenderHint as it was passed to the constructor.
dialectDialect to be used for drawing the graph.
gridSizeSpecifies the grid size.
gridEnabledSpecifies if the grid is enabled.
portsEnabledSpecifies if ports are enabled.
doubleTapEnabledSpecifies if double taps on touch-based devices should be handled.
doubleTapTimeoutSpecifies the timeout for double taps.
doubleTapToleranceSpecifies the tolerance for double taps.
lastTouchXHolds the x-coordinate of the last touch event for double tap detection.
lastTouchXHolds the y-coordinate of the last touch event for double tap detection.
lastTouchTimeHolds the time of the last touch event for double click detection.
gestureEnabledSpecifies if the handleGesture method should be invoked.
toleranceTolerance for a move to be handled as a single click.
defaultOverlapValue returned by getOverlap if isAllowOverlapParent returns true for the given cell.
defaultParentSpecifies the default parent to be used to insert new cells.
alternateEdgeStyleSpecifies the alternate edge style to be used if the main control point on an edge is being doubleclicked.
backgroundImageSpecifies the mxImage to be returned by getBackgroundImage.
pageVisibleSpecifies if the background page should be visible.
pageBreaksVisibleSpecifies if a dashed line should be drawn between multiple pages.
pageBreakColorSpecifies the color for page breaks.
pageBreakDashedSpecifies the page breaks should be dashed.
minPageBreakDistSpecifies the minimum distance for page breaks to be visible.
preferPageSizeSpecifies if the graph size should be rounded to the next page number in sizeDidChange.
pageFormatSpecifies the page format for the background page.
pageScaleSpecifies the scale of the background page.
enabledSpecifies the return value for isEnabled.
escapeEnabledSpecifies if mxKeyHandler should invoke escape when the escape key is pressed.
invokesStopCellEditingIf true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
enterStopsCellEditingIf true, pressing the enter key without pressing control or shift will stop editing and accept the new value.
useScrollbarsForPanningSpecifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
exportEnabledSpecifies the return value for canExportCell.
importEnabledSpecifies the return value for canImportCell.
cellsLockedSpecifies the return value for isCellLocked.
cellsCloneableSpecifies the return value for isCellCloneable.
foldingEnabledSpecifies if folding (collapse and expand via an image icon in the graph should be enabled).
cellsEditableSpecifies the return value for isCellEditable.
cellsDeletableSpecifies the return value for isCellDeletable.
cellsMovableSpecifies the return value for isCellMovable.
edgeLabelsMovableSpecifies the return value for edges in isLabelMovable.
vertexLabelsMovableSpecifies the return value for vertices in isLabelMovable.
dropEnabledSpecifies the return value for isDropEnabled.
splitEnabledSpecifies if dropping onto edges should be enabled.
cellsResizableSpecifies the return value for isCellResizable.
cellsBendableSpecifies the return value for isCellsBendable.
cellsSelectableSpecifies the return value for isCellSelectable.
cellsDisconnectableSpecifies the return value for <isCellDisconntable>.
autoSizeCellsSpecifies if the graph should automatically update the cell size after an edit.
autoScrollSpecifies if the graph should automatically scroll if the mouse goes near the container edge while dragging.
timerAutoScrollSpecifies if timer-based autoscrolling should be used via mxPanningManager.
allowAutoPanningSpecifies if panning via panGraph should be allowed to implement autoscroll if no scrollbars are available in scrollPointToVisible.
ignoreScrollbarsSpecifies if the graph should automatically scroll regardless of the scrollbars.
autoExtendSpecifies if the size of the graph should be automatically extended if the mouse goes near the container edge while dragging.
maximumGraphBoundsmxRectangle that specifies the area in which all cells in the diagram should be placed.
minimumGraphSizemxRectangle that specifies the minimum size of the graph.
minimumContainerSizemxRectangle that specifies the minimum size of the <container> if resizeContainer is true.
maximumContainerSizemxRectangle that specifies the maximum size of the container if resizeContainer is true.
resizeContainerSpecifies if the container should be resized to the graph size when the graph size has changed.
borderBorder to be added to the bottom and right side when the container is being resized after the graph has been changed.
orderedSpecifies if the display should reflect the order of the cells in the model.
keepEdgesInForegroundSpecifies if edges should appear in the foreground regardless of their order in the model.
keepEdgesInBackgroundSpecifies if edges should appear in the background regardless of their order in the model.
allowNegativeCoordinatesSpecifies if negative coordinates for vertices are allowed.
constrainChildrenSpecifies the return value for isConstrainChildren.
extendParentsSpecifies if a parent should contain the child bounds after a resize of the child.
extendParentsOnAddSpecifies if parents should be extended according to the extendParents switch if cells are added.
collapseToPreferredSizeSpecifies if the cell size should be changed to the preferred size when a cell is first collapsed.
zoomFactorSpecifies the factor used for zoomIn and zoomOut.
keepSelectionVisibleOnZoomSpecifies if the viewport should automatically contain the selection cells after a zoom operation.
centerZoomSpecifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
resetViewOnRootChangeSpecifies if the scale and translate should be reset if the root changes in the model.
resetEdgesOnResizeSpecifies if edge control points should be reset after the resize of a connected cell.
resetEdgesOnMoveSpecifies if edge control points should be reset after the move of a connected cell.
resetEdgesOnConnectSpecifies if edge control points should be reset after the the edge has been reconnected.
allowLoopsSpecifies if loops (aka self-references) are allowed.
defaultLoopStylemxEdgeStyle to be used for loops.
multigraphSpecifies if multiple edges in the same direction between the same pair of vertices are allowed.
connectableEdgesSpecifies if edges are connectable.
allowDanglingEdgesSpecifies if edges with disconnected terminals are allowed in the graph.
cloneInvalidEdgesSpecifies if edges that are cloned should be validated and only inserted if they are valid.
disconnectOnMoveSpecifies if edges should be disconnected from their terminals when they are moved.
labelsVisibleSpecifies if labels should be visible.
htmlLabelsSpecifies the return value for isHtmlLabel.
swimlaneSelectionEnabledSpecifies if swimlanes should be selectable via the content if the mouse is released.
swimlaneNestingSpecifies if nesting of swimlanes is allowed.
swimlaneIndicatorColorAttributeThe attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
imageBundlesHolds the list of image bundles.
minFitScaleSpecifies the minimum scale to be applied in fit.
maxFitScaleSpecifies the maximum scale to be applied in fit.
panDxCurrent horizontal panning value.
panDyCurrent vertical panning value.
collapsedImageSpecifies the mxImage to indicate a collapsed state.
expandedImageSpecifies the mxImage to indicate a expanded state.
warningImageSpecifies the mxImage for the image to be used to display a warning overlay.
alreadyConnectedResourceSpecifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
containsValidationErrorsResourceSpecifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
collapseExpandResourceSpecifies the resource key for the tooltip on the collapse/expand icon.
initInitializes the <container> and creates the respective datastructures.
createHandlersCreates the tooltip-, panning-, connection- and graph-handler (in this order).
createSelectionModelCreates a new mxGraphSelectionModel to be used in this graph.
createStylesheetCreates a new mxGraphSelectionModel to be used in this graph.
createGraphViewCreates a new mxGraphView to be used in this graph.
createCellRendererCreates a new mxCellRenderer to be used in this graph.
createCellEditorCreates a new mxCellEditor to be used in this graph.
getModelReturns the mxGraphModel that contains the cells.
getViewReturns the mxGraphView that contains the mxCellStates.
getStylesheetReturns the mxStylesheet that defines the style.
setStylesheetSets the mxStylesheet that defines the style.
getSelectionModelReturns the mxGraphSelectionModel that contains the selection.
setSelectionModelSets the <mxSelectionModel> that contains the selection.
getSelectionCellsForChangesReturns the cells to be selected for the given array of changes.
graphModelChangedCalled when the graph model changes.
getRemovedCellsForChangesReturns the cells that have been removed from the model.
processChangeProcesses the given change and invalidates the respective cached data in view.
removeStateForCellRemoves all cached information for the given cell and its descendants.
Overlays
addCellOverlayAdds an mxCellOverlay for the specified cell.
getCellOverlaysReturns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
removeCellOverlayRemoves and returns the given mxCellOverlay from the given cell.
removeCellOverlaysRemoves all mxCellOverlays from the given cell.
clearCellOverlaysRemoves all mxCellOverlays in the graph for the given cell and all its descendants.
setCellWarningCreates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
In-place editing
startEditingCalls startEditingAtCell using the given cell or the first selection cell.
startEditingAtCellFires a startEditing event and invokes mxCellEditor.startEditing on <editor>.
getEditingValueReturns the initial value for in-place editing.
stopEditingStops the current editing.
labelChangedSets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
cellLabelChangedSets the new label for a cell.
Event processing
escapeProcesses an escape keystroke.
clickProcesses a singleclick on an optional cell and fires a click event.
dblClickProcesses a doubleclick on an optional cell and fires a <dblclick> event.
scrollPointToVisibleScrolls the graph to the given point, extending the graph container if specified.
createPanningManagerCreates and returns an mxPanningManager.
getBorderSizesReturns the size of the border and padding on all four sides of the container.
getPreferredPageSizeReturns the preferred size of the background page if preferPageSize is true.
sizeDidChangeCalled when the size of the graph has changed.
doResizeContainerResizes the container for the given graph width and height.
redrawPageBreaksInvokes from sizeDidChange to redraw the page breaks.
Cell styles
getCellStyleReturns an array of key, value pairs representing the cell style for the given cell.
postProcessCellStyleTries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
setCellStyleSets the style of the specified cells.
toggleCellStyleToggles the boolean value for the given key in the style of the given cell.
toggleCellStylesToggles the boolean value for the given key in the style of the given cells.
setCellStylesSets the key to value in the styles of the given cells.
toggleCellStyleFlagsToggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlagsSets or toggles the given bit for the given key in the styles of the specified cells.
Cell alignment and orientation
alignCellsAligns the given cells vertically or horizontally according to the given alignment using the optional parameter as the coordinate.
flipEdgeToggles the style of the given edge between null (or empty) and alternateEdgeStyle.
addImageBundleAdds the specified mxImageBundle.
removeImageBundleRemoves the specified mxImageBundle.
getImageFromBundlesSearches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
Order
orderCellsMoves the given cells to the front or back.
cellsOrderedMoves the given cells to the front or back.
Grouping
groupCellsAdds the cells into the given group.
getCellsForGroupReturns the cells with the same parent as the first cell in the given array.
getBoundsForGroupReturns the bounds to be used for the given group and children.
createGroupCellHook for creating the group cell to hold the given array of mxCells if no group cell was given to the <group> function.
ungroupCellsUngroups the given cells by moving the children the children to their parents parent and removing the empty groups.
removeCellsFromParentRemoves the specified cells from their parents and adds them to the default parent.
updateGroupBoundsUpdates the bounds of the given array of groups so that it includes all child vertices.
Cell cloning, insertion and removal
cloneCellsReturns the clones for the given cells.
insertVertexAdds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
createVertexHook method that creates the new vertex for insertVertex.
insertEdgeAdds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
createEdgeHook method that creates the new edge for insertEdge.
addEdgeAdds the edge to the parent and connects it to the given source and target terminals.
addCellAdds the cell to the parent and connects it to the given source and target terminals.
addCellsAdds the cells to the parent at the given index, connecting each cell to the optional source and target terminal.
cellsAddedAdds the specified cells to the given parent.
removeCellsRemoves the given cells from the graph including all connected edges if includeEdges is true.
cellsRemovedRemoves the given cells from the model.
splitEdgeSplits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
Cell visibility
toggleCellsSets the visible state of the specified cells and all connected edges if includeEdges is true.
cellsToggledSets the visible state of the specified cells.
Folding
foldCellsSets the collapsed state of the specified cells and all descendants if recurse is true.
cellsFoldedSets the collapsed state of the specified cells.
swapBoundsSwaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
updateAlternateBoundsUpdates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
addAllEdgesReturns an array with the given cells and all edges that are connected to a cell or one of its descendants.
getAllEdgesReturns all edges connected to the given cells or its descendants.
Cell sizing
updateCellSizeUpdates the size of the given cell in the model using cellSizeUpdated.
cellSizeUpdatedUpdates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
getPreferredSizeForCellReturns the preferred width and height of the given mxCell as an mxRectangle.
handleGestureInvokes if a gesture event has been detected on a cell state.
resizeCellSets the bounds of the given cell using resizeCells.
resizeCellsSets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
cellsResizedSets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
extendParentResizes the parents recursively so that they contain the complete area of the resized child cell.
Cell moving
importCellsClones and inserts the given cells into the graph using the move method and returns the inserted cells.
moveCellsMoves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
cellsMovedMoves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
translateCellTranslates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
getCellContainmentAreaReturns the mxRectangle inside which a cell is to be kept.
getMaximumGraphBoundsReturns the bounds inside which the diagram should be kept as an mxRectangle.
constrainChildKeeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
resetEdgesResets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
resetEdgeResets the control points of the given edge.
Cell connecting and connection constraints
getAllConnectionConstraintsReturns an array of all mxConnectionConstraints for the given terminal.
getConnectionConstraintReturns an mxConnectionConstraint that describes the given connection point.
setConnectionConstraintSets the mxConnectionConstraint that describes the given connection point.
getConnectionPointReturns the nearest point in the list of absolute points or the center of the opposite terminal.
connectCellConnects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
cellConnectedSets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
disconnectGraphDisconnects the given edges from the terminals which are not in the given array.
Drilldown
getCurrentRootReturns the current root of the displayed cell hierarchy.
getTranslateForRootReturns the translation to be used if the given cell is the root cell as an mxPoint.
isPortReturns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
getTerminalForPortReturns the terminal to be used for a given port.
getChildOffsetForCellReturns the offset to be used for the cells inside the given cell.
enterGroupUses the given cell as the root of the displayed cell hierarchy.
exitGroupChanges the current root to the next valid root in the displayed cell hierarchy.
homeUses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
isValidRootReturns true if the given cell is a valid root for the cell display hierarchy.
Graph display
getGraphBoundsReturns the bounds of the visible graph.
getCellBoundsReturns the scaled, translated bounds for the given cell.
getBoundingBoxFromGeometryReturns the bounding box for the geometries of the vertices in the given array of cells.
refreshClears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
snapSnaps the given numeric value to the grid if gridEnabled is true.
panGraphShifts the graph display by the given amount.
zoomInZooms into the graph by zoomFactor.
zoomOutZooms out of the graph by zoomFactor.
zoomActualResets the zoom and panning in the view.
zoomToZooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
zoomZooms the graph using the given factor.
fitScales the graph such that the complete diagram fits into <container> and returns the current scale in the view.
scrollCellToVisiblePans the graph so that it shows the given cell.
scrollRectToVisiblePans the graph so that it shows the given rectangle.
getCellGeometryReturns the mxGeometry for the given cell.
isCellVisibleReturns true if the given cell is visible in this graph.
isCellCollapsedReturns true if the given cell is collapsed in this graph.
isCellConnectableReturns true if the given cell is connectable in this graph.
isOrthogonalReturns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
isLoopReturns true if the given cell state is a loop.
isCloneEventReturns true if the given event is a clone event.
isToggleEventReturns true if the given event is a toggle event.
isGridEnabledEventReturns true if the given mouse event should be aligned to the grid.
isConstrainedEventReturns true if the given mouse event should be aligned to the grid.
isForceMarqueeEventReturns true if the given event forces marquee selection.
Validation
validationAlertDisplays the given validation error in a dialog.
isEdgeValidChecks if the return value of getEdgeValidationError for the given arguments is null.
getEdgeValidationErrorReturns the validation error message to be displayed when inserting or changing an edges’ connectivity.
validateEdgeHook method for subclassers to return an error message for the given edge and terminals.
validateGraphValidates the graph by validating each descendant of the given cell or the root of the model.
getCellValidationErrorChecks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
validateCellHook method for subclassers to return an error message for the given cell and validation context.
Graph appearance
getBackgroundImageReturns the backgroundImage as an mxImage.
setBackgroundImageSets the new backgroundImage.
getFoldingImageReturns the mxImage used to display the collapsed state of the specified cell state.
convertValueToStringReturns the textual representation for the given cell.
getLabelReturns a string or DOM node that represents the label for the given cell.
isHtmlLabelReturns true if the label must be rendered as HTML markup.
isHtmlLabelsReturns htmlLabels.
setHtmlLabelsSets htmlLabels.
isWrappingThis enables wrapping for HTML labels.
isLabelClippedReturns true if the overflow portion of labels should be hidden.
getTooltipReturns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
getTooltipForCellReturns the string or DOM node to be used as the tooltip for the given cell.
getCursorForCellReturns the cursor value to be used for the CSS of the shape for the given cell.
getStartSizeReturns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
getImageReturns the image URL for the given cell state.
getVerticalAlignReturns the vertical alignment for the given cell state.
getIndicatorColorReturns the indicator color for the given cell state.
getIndicatorGradientColorReturns the indicator gradient color for the given cell state.
getIndicatorShapeReturns the indicator shape for the given cell state.
getIndicatorImageReturns the indicator image for the given cell state.
getBorderReturns the value of border.
setBorderSets the value of border.
isSwimlaneReturns true if the given cell is a swimlane in the graph.
Graph behaviour
isResizeContainerReturns resizeContainer.
setResizeContainerSets resizeContainer.
isEnabledReturns true if the graph is enabled.
setEnabledSpecifies if the graph should allow any interactions.
isEscapeEnabledReturns escapeEnabled.
setEscapeEnabledSets escapeEnabled.
isInvokesStopCellEditingReturns invokesStopCellEditing.
setInvokesStopCellEditingSets invokesStopCellEditing.
isEnterStopsCellEditingReturns enterStopsCellEditing.
setEnterStopsCellEditingSets enterStopsCellEditing.
isCellLockedReturns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
isCellsLockedReturns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
setLockedSets if any cell may be moved, sized, bended, disconnected, edited or selected.
getCloneableCellsReturns the cells which may be exported in the given array of cells.
isCellCloneableReturns true if the given cell is cloneable.
isCellsCloneableReturns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
setCellsCloneableSpecifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
getExportableCellsReturns the cells which may be exported in the given array of cells.
canExportCellReturns true if the given cell may be exported to the clipboard.
getImportableCellsReturns the cells which may be imported in the given array of cells.
canImportCellReturns true if the given cell may be imported from the clipboard.
isCellSelectableReturns true if the given cell is selectable.
isCellsSelectableReturns cellsSelectable.
setCellsSelectableSets cellsSelectable.
getDeletableCellsReturns the cells which may be exported in the given array of cells.
isCellDeletableReturns true if the given cell is moveable.
isCellsDeletableReturns cellsDeletable.
setCellsDeletableSets cellsDeletable.
isLabelMovableReturns true if the given edges’s label is moveable.
getMovableCellsReturns the cells which are movable in the given array of cells.
isCellMovableReturns true if the given cell is moveable.
isCellsMovableReturns cellsMovable.
setCellsMovableSpecifies if the graph should allow moving of cells.
isGridEnabledReturns gridEnabled as a boolean.
setGridEnabledSpecifies if the grid should be enabled.
isPortsEnabledReturns portsEnabled as a boolean.
setPortsEnabledSpecifies if the ports should be enabled.
getGridSizeReturns gridSize.
setGridSizeSets gridSize.
getToleranceReturns tolerance.
setToleranceSets tolerance.
isVertexLabelsMovableReturns vertexLabelsMovable.
setVertexLabelsMovableSets vertexLabelsMovable.
isEdgeLabelsMovableReturns edgeLabelsMovable.
isEdgeLabelsMovableSets edgeLabelsMovable.
isSwimlaneNestingReturns swimlaneNesting as a boolean.
setSwimlaneNestingSpecifies if swimlanes can be nested by drag and drop.
isSwimlaneSelectionEnabledReturns swimlaneSelectionEnabled as a boolean.
setSwimlaneSelectionEnabledSpecifies if swimlanes should be selected if the mouse is released over their content area.
isMultigraphReturns multigraph as a boolean.
setMultigraphSpecifies if the graph should allow multiple connections between the same pair of vertices.
isAllowLoopsReturns allowLoops as a boolean.
setAllowDanglingEdgesSpecifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
isAllowDanglingEdgesReturns allowDanglingEdges as a boolean.
setConnectableEdgesSpecifies if edges should be connectable.
isConnectableEdgesReturns connectableEdges as a boolean.
setCloneInvalidEdgesSpecifies if edges should be inserted when cloned but not valid wrt.
isCloneInvalidEdgesReturns cloneInvalidEdges as a boolean.
setAllowLoopsSpecifies if loops are allowed.
isDisconnectOnMoveReturns disconnectOnMove as a boolean.
setDisconnectOnMoveSpecifies if edges should be disconnected when moved.
isDropEnabledReturns dropEnabled as a boolean.
setDropEnabledSpecifies if the graph should allow dropping of cells onto or into other cells.
isSplitEnabledReturns splitEnabled as a boolean.
setSplitEnabledSpecifies if the graph should allow dropping of cells onto or into other cells.
isCellResizableReturns true if the given cell is resizable.
isCellsResizableReturns cellsResizable.
setCellsResizableSpecifies if the graph should allow resizing of cells.
isTerminalPointMovableReturns true if the given terminal point is movable.
isCellBendableReturns true if the given cell is bendable.
isCellsBendableReturns <cellsBenadable>.
setCellsBendableSpecifies if the graph should allow bending of edges.
isCellEditableReturns true if the given cell is editable.
isCellsEditableReturns cellsEditable.
setCellsEditableSpecifies if the graph should allow in-place editing for cell labels.
isCellDisconnectableReturns true if the given cell is disconnectable from the source or target terminal.
isCellsDisconnectableReturns cellsDisconnectable.
setCellsDisconnectableSets cellsDisconnectable.
isValidSourceReturns true if the given cell is a valid source for new connections.
isValidTargetReturns isValidSource for the given cell.
isValidConnectionReturns true if the given target cell is a valid target for source.
setConnectableSpecifies if the graph should allow new connections.
isConnectableReturns true if the <connectionHandler> is enabled.
setTooltipsSpecifies if tooltips should be enabled.
setPanningSpecifies if panning should be enabled.
isEditingReturns true if the given cell is currently being edited.
isAutoSizeCellReturns true if the size of the given cell should automatically be updated after a change of the label.
isAutoSizeCellsReturns autoSizeCells.
setAutoSizeCellsSpecifies if cell sizes should be automatically updated after a label change.
isExtendParentReturns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
isExtendParentsReturns extendParents.
setExtendParentsSets extendParents.
isExtendParentsOnAddReturns extendParentsOnAdd.
setExtendParentsOnAddSets extendParentsOnAdd.
isConstrainChildReturns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
isConstrainChildrenReturns constrainChildren.
setConstrainChildrenSets constrainChildren.
isConstrainChildrenReturns allowNegativeCoordinates.
setConstrainChildrenSets allowNegativeCoordinates.
getOverlapReturns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
isAllowOverlapParentReturns true if the given cell is allowed to be placed outside of the parents area.
getFoldableCellsReturns the cells which are movable in the given array of cells.
isCellFoldableReturns true if the given cell is foldable.
isValidDropTargetReturns true if the given cell is a valid drop target for the specified cells.
isSplitTargetReturns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
getDropTargetReturns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
Cell retrieval
getDefaultParentReturns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
setDefaultParentSets the defaultParent to the given cell.
getSwimlaneReturns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
getSwimlaneAtReturns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
getCellAtReturns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
intersectsReturns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
hitsSwimlaneContentReturns true if the given coordinate pair is inside the content are of the given swimlane.
getChildVerticesReturns the visible child vertices of the given parent.
getChildEdgesReturns the visible child edges of the given parent.
getChildCellsReturns the visible child vertices or edges in the given parent.
getConnectionsReturns all visible edges connected to the given cell without loops.
getIncomingEdgesReturns the visible incoming edges for the given cell.
getOutgoingEdgesReturns the visible outgoing edges for the given cell.
getEdgesReturns the incoming and/or outgoing edges for the given cell.
isValidAncestorReturns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
getOppositesReturns all distinct visible opposite cells for the specified terminal on the given edges.
getEdgesBetweenReturns the edges between the given source and target.
getPointForEventReturns an mxPoint representing the given event in the unscaled, non-translated coordinate space of <container> and applies the grid.
getCellsReturns the children of the given parent that are contained in the given rectangle (x, y, width, height).
getCellsBeyondReturns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
findTreeRootsReturns all children in the given parent which do not have incoming edges.
traverseTraverses the (directed) graph invoking the given function for each visited vertex and edge.
Selection
isCellSelectedReturns true if the given cell is selected.
isSelectionEmptyReturns true if the selection is empty.
clearSelectionClears the selection using mxGraphSelectionModel.clear.
getSelectionCountReturns the number of selected cells.
getSelectionCellReturns the first cell from the array of selected mxCells.
getSelectionCellsReturns the array of selected mxCells.
setSelectionCellSets the selection cell.
setSelectionCellsSets the selection cell.
addSelectionCellAdds the given cell to the selection.
addSelectionCellsAdds the given cells to the selection.
removeSelectionCellRemoves the given cell from the selection.
removeSelectionCellsRemoves the given cells from the selection.
selectRegionSelects and returns the cells inside the given rectangle for the specified event.
selectNextCellSelects the next cell.
selectPreviousCellSelects the previous cell.
selectParentCellSelects the parent cell.
selectChildCellSelects the first child cell.
selectCellSelects the next, parent, first child or previous cell, if all arguments are false.
selectAllSelects all children of the given parent cell or the children of the default parent if no parent is specified.
selectVerticesSelect all vertices inside the given parent or the default parent.
selectVerticesSelect all vertices inside the given parent or the default parent.
selectCellsSelects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
selectCellForEventSelects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
selectCellsForEventSelects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
Selection state
createHandlerCreates a new handler for the given cell state.
Graph events
addMouseListenerAdds a listener to the graph event dispatch loop.
removeMouseListenerRemoves the specified graph listener.
updateMouseEventSets the graphX and graphY properties if the given mxMouseEvent if required.
fireMouseEventDispatches the given event in the graph event dispatch loop.
destroyDestroys the graph and all its resources.

Events

mxEvent.ROOT

Fires if the root in the model has changed.  This event has no properties.

-

mxEvent.ALIGN_CELLS

Fires between begin- and endUpdate in alignCells.  The <code>cells</code> and <code>align</code> properties contain the respective arguments that were passed to alignCells.

+

mxEvent.ALIGN_CELLS

Fires between begin- and endUpdate in alignCells.  The <code>cells</code> and <code>align</code> properties contain the respective arguments that were passed to alignCells.

-

mxEvent.FLIP_EDGE

Fires between begin- and endUpdate in flipEdge.  The <code>edge</code> property contains the edge passed to flipEdge.

+

mxEvent.FLIP_EDGE

Fires between begin- and endUpdate in flipEdge.  The <code>edge</code> property contains the edge passed to flipEdge.

-

mxEvent.ORDER_CELLS

Fires between begin- and endUpdate in orderCells.  The <code>cells</code> and <code>back</code> properties contain the respective arguments that were passed to orderCells.

+

mxEvent.ORDER_CELLS

Fires between begin- and endUpdate in orderCells.  The <code>cells</code> and <code>back</code> properties contain the respective arguments that were passed to orderCells.

-

mxEvent.CELLS_ORDERED

Fires between begin- and endUpdate in cellsOrdered.  The <code>cells</code> and <code>back</code> arguments contain the respective arguments that were passed to cellsOrdered.

+

mxEvent.CELLS_ORDERED

Fires between begin- and endUpdate in cellsOrdered.  The <code>cells</code> and <code>back</code> arguments contain the respective arguments that were passed to cellsOrdered.

-

mxEvent.GROUP_CELLS

Fires between begin- and endUpdate in groupCells.  The <code>group</code>, <code>cells</code> and <code>border</code> arguments contain the respective arguments that were passed to groupCells.

+

mxEvent.GROUP_CELLS

Fires between begin- and endUpdate in groupCells.  The <code>group</code>, <code>cells</code> and <code>border</code> arguments contain the respective arguments that were passed to groupCells.

-

mxEvent.UNGROUP_CELLS

Fires between begin- and endUpdate in ungroupCells.  The <code>cells</code> property contains the array of cells that was passed to ungroupCells.

+

mxEvent.UNGROUP_CELLS

Fires between begin- and endUpdate in ungroupCells.  The <code>cells</code> property contains the array of cells that was passed to ungroupCells.

-

mxEvent.REMOVE_CELLS_FROM_PARENT

Fires between begin- and endUpdate in removeCellsFromParent.  The <code>cells</code> property contains the array of cells that was passed to removeCellsFromParent.

+

mxEvent.REMOVE_CELLS_FROM_PARENT

Fires between begin- and endUpdate in removeCellsFromParent.  The <code>cells</code> property contains the array of cells that was passed to removeCellsFromParent.

-

mxEvent.ADD_CELLS

Fires between begin- and endUpdate in addCells.  The <code>cells</code>, <code>parent</code>, <code>index</code>, <code>source</code> and <code>target</code> properties contain the respective arguments that were passed to addCells.

+

mxEvent.ADD_CELLS

Fires between begin- and endUpdate in addCells.  The <code>cells</code>, <code>parent</code>, <code>index</code>, <code>source</code> and <code>target</code> properties contain the respective arguments that were passed to addCells.

-

mxEvent.CELLS_ADDED

Fires between begin- and endUpdate in cellsAdded.  The <code>cells</code>, <code>parent</code>, <code>index</code>, <code>source</code>, <code>target</code> and <code>absolute</code> properties contain the respective arguments that were passed to cellsAdded.

+

mxEvent.CELLS_ADDED

Fires between begin- and endUpdate in cellsAdded.  The <code>cells</code>, <code>parent</code>, <code>index</code>, <code>source</code>, <code>target</code> and <code>absolute</code> properties contain the respective arguments that were passed to cellsAdded.

-

mxEvent.REMOVE_CELLS

Fires between begin- and endUpdate in removeCells.  The <code>cells</code> and <code>includeEdges</code> arguments contain the respective arguments that were passed to removeCells.

+

mxEvent.REMOVE_CELLS

Fires between begin- and endUpdate in removeCells.  The <code>cells</code> and <code>includeEdges</code> arguments contain the respective arguments that were passed to removeCells.

-

mxEvent.CELLS_REMOVED

Fires between begin- and endUpdate in cellsRemoved.  The <code>cells</code> argument contains the array of cells that was removed.

+

mxEvent.CELLS_REMOVED

Fires between begin- and endUpdate in cellsRemoved.  The <code>cells</code> argument contains the array of cells that was removed.

-

mxEvent.SPLIT_EDGE

Fires between begin- and endUpdate in splitEdge.  The <code>edge</code> property contains the edge to be splitted, the <code>cells</code>, <code>newEdge</code>, <code>dx</code> and <code>dy</code> properties contain the respective arguments that were passed to splitEdge.

+

mxEvent.SPLIT_EDGE

Fires between begin- and endUpdate in splitEdge.  The <code>edge</code> property contains the edge to be splitted, the <code>cells</code>, <code>newEdge</code>, <code>dx</code> and <code>dy</code> properties contain the respective arguments that were passed to splitEdge.

-

mxEvent.TOGGLE_CELLS

Fires between begin- and endUpdate in toggleCells.  The <code>show</code>, <code>cells</code> and <code>includeEdges</code> properties contain the respective arguments that were passed to toggleCells.

+

mxEvent.TOGGLE_CELLS

Fires between begin- and endUpdate in toggleCells.  The <code>show</code>, <code>cells</code> and <code>includeEdges</code> properties contain the respective arguments that were passed to toggleCells.

-

mxEvent.FOLD_CELLS

Fires between begin- and endUpdate in foldCells.  The <code>collapse</code>, <code>cells</code> and <code>recurse</code> properties contain the respective arguments that were passed to foldCells.

+

mxEvent.FOLD_CELLS

Fires between begin- and endUpdate in foldCells.  The <code>collapse</code>, <code>cells</code> and <code>recurse</code> properties contain the respective arguments that were passed to foldCells.

-

mxEvent.CELLS_FOLDED

Fires between begin- and endUpdate in cellsFolded.  The <code>collapse</code>, <code>cells</code> and <code>recurse</code> properties contain the respective arguments that were passed to cellsFolded.

+

mxEvent.CELLS_FOLDED

Fires between begin- and endUpdate in cellsFolded.  The <code>collapse</code>, <code>cells</code> and <code>recurse</code> properties contain the respective arguments that were passed to cellsFolded.

-

mxEvent.UPDATE_CELL_SIZE

Fires between begin- and endUpdate in updateCellSize.  The <code>cell</code> and <code>ignoreChildren</code> properties contain the respective arguments that were passed to updateCellSize.

+

mxEvent.UPDATE_CELL_SIZE

Fires between begin- and endUpdate in updateCellSize.  The <code>cell</code> and <code>ignoreChildren</code> properties contain the respective arguments that were passed to updateCellSize.

-

mxEvent.RESIZE_CELLS

Fires between begin- and endUpdate in resizeCells.  The <code>cells</code> and <code>bounds</code> properties contain the respective arguments that were passed to resizeCells.

+

mxEvent.RESIZE_CELLS

Fires between begin- and endUpdate in resizeCells.  The <code>cells</code> and <code>bounds</code> properties contain the respective arguments that were passed to resizeCells.

-

mxEvent.CELLS_RESIZED

Fires between begin- and endUpdate in cellsResized.  The <code>cells</code> and <code>bounds</code> properties contain the respective arguments that were passed to cellsResized.

+

mxEvent.CELLS_RESIZED

Fires between begin- and endUpdate in cellsResized.  The <code>cells</code> and <code>bounds</code> properties contain the respective arguments that were passed to cellsResized.

-

mxEvent.MOVE_CELLS

Fires between begin- and endUpdate in moveCells.  The <code>cells</code>, <code>dx</code>, <code>dy</code>, <code>clone</code>, <code>target</code> and <code>event</code> properties contain the respective arguments that were passed to moveCells.

+

mxEvent.MOVE_CELLS

Fires between begin- and endUpdate in moveCells.  The <code>cells</code>, <code>dx</code>, <code>dy</code>, <code>clone</code>, <code>target</code> and <code>event</code> properties contain the respective arguments that were passed to moveCells.

-

mxEvent.CELLS_MOVED

Fires between begin- and endUpdate in cellsMoved.  The <code>cells</code>, <code>dx</code>, <code>dy</code> and <code>disconnect</code> properties contain the respective arguments that were passed to cellsMoved.

+

mxEvent.CELLS_MOVED

Fires between begin- and endUpdate in cellsMoved.  The <code>cells</code>, <code>dx</code>, <code>dy</code> and <code>disconnect</code> properties contain the respective arguments that were passed to cellsMoved.

-

mxEvent.CONNECT_CELL

Fires between begin- and endUpdate in connectCell.  The <code>edge</code>, <code>terminal</code> and <code>source</code> properties contain the respective arguments that were passed to connectCell.

+

mxEvent.CONNECT_CELL

Fires between begin- and endUpdate in connectCell.  The <code>edge</code>, <code>terminal</code> and <code>source</code> properties contain the respective arguments that were passed to connectCell.

-

mxEvent.CELL_CONNECTED

Fires between begin- and endUpdate in cellConnected.  The <code>edge</code>, <code>terminal</code> and <code>source</code> properties contain the respective arguments that were passed to cellConnected.

+

mxEvent.CELL_CONNECTED

Fires between begin- and endUpdate in cellConnected.  The <code>edge</code>, <code>terminal</code> and <code>source</code> properties contain the respective arguments that were passed to cellConnected.

-

mxEvent.REFRESH

Fires after refresh was executed.  This event has no properties.

+

mxEvent.REFRESH

Fires after refresh was executed.  This event has no properties.

-

mxEvent.CLICK

Fires in click after a click event.  The <code>event</code> property contains the original mouse event and <code>cell</code> property contains the cell under the mouse or null if the background was clicked.

To handle a click event, use the following code

graph.addListener(mxEvent.CLICK, function(sender, evt)
+

mxEvent.CLICK

Fires in click after a click event.  The <code>event</code> property contains the original mouse event and <code>cell</code> property contains the cell under the mouse or null if the background was clicked.

To handle a click event, use the following code

graph.addListener(mxEvent.CLICK, function(sender, evt)
 {
   var e = evt.getProperty('event'); // mouse event
   var cell = evt.getProperty('cell'); // cell may be null
@@ -111,55 +111,55 @@ dec.decode(node, graph.getModel());

For creating a page tha } });

-

mxEvent.DOUBLE_CLICK

Fires in dblClick after a double click.  The <code>event</code> property contains the original mouse event and the <code>cell</code> property contains the cell under the mouse or null if the background was clicked.

+

mxEvent.DOUBLE_CLICK

Fires in dblClick after a double click.  The <code>event</code> property contains the original mouse event and the <code>cell</code> property contains the cell under the mouse or null if the background was clicked.

-

mxEvent.SIZE

Fires after sizeDidChange was executed.  The <code>bounds</code> property contains the new graph bounds.

+

mxEvent.SIZE

Fires after sizeDidChange was executed.  The <code>bounds</code> property contains the new graph bounds.

-

mxEvent.START_EDITING

Fires before the in-place editor starts in startEditingAtCell.  The <code>cell</code> property contains the cell that is being edited and the <code>event</code> property contains the optional event argument that was passed to startEditingAtCell.

+

mxEvent.START_EDITING

Fires before the in-place editor starts in startEditingAtCell.  The <code>cell</code> property contains the cell that is being edited and the <code>event</code> property contains the optional event argument that was passed to startEditingAtCell.

-

mxEvent.LABEL_CHANGED

Fires between begin- and endUpdate in cellLabelChanged.  The <code>cell</code> property contains the cell, the <code>value</code> property contains the new value for the cell and the optional <code>event</code> property contains the mouse event that started the edit.

+

mxEvent.LABEL_CHANGED

Fires between begin- and endUpdate in cellLabelChanged.  The <code>cell</code> property contains the cell, the <code>value</code> property contains the new value for the cell and the optional <code>event</code> property contains the mouse event that started the edit.

-

mxEvent.ADD_OVERLAY

Fires after an overlay is added in addCellOverlay.  The <code>cell</code> property contains the cell and the <code>overlay</code> property contains the mxCellOverlay that was added.

+

mxEvent.ADD_OVERLAY

Fires after an overlay is added in addCellOverlay.  The <code>cell</code> property contains the cell and the <code>overlay</code> property contains the mxCellOverlay that was added.

-

mxEvent.REMOVE_OVERLAY

Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.  The <code>cell</code> property contains the cell and the <code>overlay</code> property contains the mxCellOverlay that was removed.

+

mxEvent.REMOVE_OVERLAY

Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.  The <code>cell</code> property contains the cell and the <code>overlay</code> property contains the mxCellOverlay that was removed.

-

mxGraph

function mxGraph(container,
model,
renderHint,
stylesheet)

Constructs a new mxGraph in the specified container.  Model is an optional mxGraphModel.  If no model is provided, a new mxGraphModel instance is used as the model.  The container must have a valid owner document prior to calling this function in Internet Explorer.  RenderHint is a string to affect the display performance and rendering in IE, but not in SVG-based browsers.  The parameter is mapped to dialect, which may be one of mxConstants.DIALECT_SVG for SVG-based browsers, mxConstants.DIALECT_STRICTHTML for fastest display mode, mxConstants.DIALECT_PREFERHTML for faster display mode, mxConstants.DIALECT_MIXEDHTML for fast and mxConstants.DIALECT_VML for exact display mode (slowest).  The dialects are defined in mxConstants.  The default values are DIALECT_SVG for SVG-based browsers and DIALECT_MIXED for IE.

The possible values for the renderingHint parameter are explained below

fastThe parameter is based on the fact that the display performance is highly improved in IE if the VML is not contained within a VML group element.  The lack of a group element only slightly affects the display while panning, but improves the performance by almost a factor of 2, while keeping the display sufficiently accurate.  This also allows to render certain shapes as HTML if the display accuracy is not affected, which is implemented by mxShape.isMixedModeHtml.  This is the default setting and is mapped to DIALECT_MIXEDHTML.
fasterSame as fast, but more expensive shapes are avoided.  This is controlled by mxShape.preferModeHtml.  The default implementation will avoid gradients and rounded rectangles, but more significant shapes, such as rhombus, ellipse, actor and cylinder will be rendered accurately.  This setting is mapped to DIALECT_PREFERHTML.
fastestAlmost anything will be rendered in Html.  This allows for rectangles, labels and images.  This setting is mapped to DIALECT_STRICTHTML.
exactIf accurate panning is required and if the diagram is small (up to 100 cells), then this value should be used.  In this mode, a group is created that contains the VML.  This allows for accurate panning and is mapped to DIALECT_VML.

Example

To create a graph inside a DOM node with an id of graph

var container = document.getElementById('graph');
-var graph = new mxGraph(container);

Parameters

containerOptional DOM node that acts as a container for the graph.  If this is null then the container can be initialized later using init.
modelOptional mxGraphModel that constitutes the graph data.
renderHintOptional string that specifies the display accuracy and performance.  Default is mxConstants.DIALECT_MIXEDHTML (for IE).
stylesheetOptional mxStylesheet to be used in the graph.
+

mxGraph

function mxGraph(container,
model,
renderHint,
stylesheet)

Constructs a new mxGraph in the specified container.  Model is an optional mxGraphModel.  If no model is provided, a new mxGraphModel instance is used as the model.  The container must have a valid owner document prior to calling this function in Internet Explorer.  RenderHint is a string to affect the display performance and rendering in IE, but not in SVG-based browsers.  The parameter is mapped to dialect, which may be one of mxConstants.DIALECT_SVG for SVG-based browsers, mxConstants.DIALECT_STRICTHTML for fastest display mode, mxConstants.DIALECT_PREFERHTML for faster display mode, mxConstants.DIALECT_MIXEDHTML for fast and mxConstants.DIALECT_VML for exact display mode (slowest).  The dialects are defined in mxConstants.  The default values are DIALECT_SVG for SVG-based browsers and DIALECT_MIXED for IE.

The possible values for the renderingHint parameter are explained below

fastThe parameter is based on the fact that the display performance is highly improved in IE if the VML is not contained within a VML group element.  The lack of a group element only slightly affects the display while panning, but improves the performance by almost a factor of 2, while keeping the display sufficiently accurate.  This also allows to render certain shapes as HTML if the display accuracy is not affected, which is implemented by mxShape.isMixedModeHtml.  This is the default setting and is mapped to DIALECT_MIXEDHTML.
fasterSame as fast, but more expensive shapes are avoided.  This is controlled by mxShape.preferModeHtml.  The default implementation will avoid gradients and rounded rectangles, but more significant shapes, such as rhombus, ellipse, actor and cylinder will be rendered accurately.  This setting is mapped to DIALECT_PREFERHTML.
fastestAlmost anything will be rendered in Html.  This allows for rectangles, labels and images.  This setting is mapped to DIALECT_STRICTHTML.
exactIf accurate panning is required and if the diagram is small (up to 100 cells), then this value should be used.  In this mode, a group is created that contains the VML.  This allows for accurate panning and is mapped to DIALECT_VML.

Example

To create a graph inside a DOM node with an id of graph

var container = document.getElementById('graph');
+var graph = new mxGraph(container);

Parameters

containerOptional DOM node that acts as a container for the graph.  If this is null then the container can be initialized later using init.
modelOptional mxGraphModel that constitutes the graph data.
renderHintOptional string that specifies the display accuracy and performance.  Default is mxConstants.DIALECT_MIXEDHTML (for IE).
stylesheetOptional mxStylesheet to be used in the graph.

EMPTY_ARRAY

mxGraph.prototype.EMPTY_ARRAY

Immutable empty array instance.

Variables

-

mouseListeners

mxGraph.prototype.mouseListeners

Holds the mouse event listeners.  See fireMouseEvent.

+

mouseListeners

mxGraph.prototype.mouseListeners

Holds the mouse event listeners.  See fireMouseEvent.

isMouseDown

mxGraph.prototype.isMouseDown

Holds the state of the mouse button.

-

model

mxGraph.prototype.model

Holds the mxGraphModel that contains the cells to be displayed.

+

model

mxGraph.prototype.model

Holds the mxGraphModel that contains the cells to be displayed.

-

view

mxGraph.prototype.view

Holds the mxGraphView that caches the mxCellStates for the cells.

+

view

mxGraph.prototype.view

Holds the mxGraphView that caches the mxCellStates for the cells.

-

stylesheet

mxGraph.prototype.stylesheet

Holds the mxStylesheet that defines the appearance of the cells.

Example

Use the following code to read a stylesheet into an existing graph.

var req = mxUtils.load('stylesheet.xml');
+

stylesheet

mxGraph.prototype.stylesheet

Holds the mxStylesheet that defines the appearance of the cells.

Example

Use the following code to read a stylesheet into an existing graph.

var req = mxUtils.load('stylesheet.xml');
 var root = req.getDocumentElement();
 var dec = new mxCodec(root.ownerDocument);
 dec.decode(root, graph.stylesheet);
-

selectionModel

mxGraph.prototype.selectionModel

Holds the mxGraphSelectionModel that models the current selection.

+

selectionModel

mxGraph.prototype.selectionModel

Holds the mxGraphSelectionModel that models the current selection.

-

cellEditor

mxGraph.prototype.cellEditor

Holds the mxCellEditor that is used as the in-place editing.

+

cellEditor

mxGraph.prototype.cellEditor

Holds the mxCellEditor that is used as the in-place editing.

-

cellRenderer

mxGraph.prototype.cellRenderer

Holds the mxCellRenderer for rendering the cells in the graph.

+

cellRenderer

mxGraph.prototype.cellRenderer

Holds the mxCellRenderer for rendering the cells in the graph.

-

multiplicities

mxGraph.prototype.multiplicities

An array of mxMultiplicities describing the allowed connections in a graph.

+

multiplicities

mxGraph.prototype.multiplicities

An array of mxMultiplicities describing the allowed connections in a graph.

renderHint

mxGraph.prototype.renderHint

RenderHint as it was passed to the constructor.

-

dialect

mxGraph.prototype.dialect

Dialect to be used for drawing the graph.  Possible values are all constants in mxConstants with a DIALECT-prefix.

+

dialect

mxGraph.prototype.dialect

Dialect to be used for drawing the graph.  Possible values are all constants in mxConstants with a DIALECT-prefix.

gridSize

mxGraph.prototype.gridSize

Specifies the grid size.  Default is 10.

-

gridEnabled

mxGraph.prototype.gridEnabled

Specifies if the grid is enabled.  This is used in snap.  Default is true.

+

gridEnabled

mxGraph.prototype.gridEnabled

Specifies if the grid is enabled.  This is used in snap.  Default is true.

-

portsEnabled

mxGraph.prototype.portsEnabled

Specifies if ports are enabled.  This is used in cellConnected to update the respective style.  Default is true.

+

portsEnabled

mxGraph.prototype.portsEnabled

Specifies if ports are enabled.  This is used in cellConnected to update the respective style.  Default is true.

doubleTapEnabled

mxGraph.prototype.doubleTapEnabled

Specifies if double taps on touch-based devices should be handled.  Default is true.

@@ -177,19 +177,19 @@ dec.decode(root, graph.stylesheet);

tolerance

mxGraph.prototype.tolerance

Tolerance for a move to be handled as a single click.  Default is 4 pixels.

-

defaultOverlap

mxGraph.prototype.defaultOverlap

Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.  getOverlap is used in constrainChild if isConstrainChild returns true.  The value specifies the portion of the child which is allowed to overlap the parent.

+

defaultOverlap

mxGraph.prototype.defaultOverlap

Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.  getOverlap is used in constrainChild if isConstrainChild returns true.  The value specifies the portion of the child which is allowed to overlap the parent.

-

defaultParent

mxGraph.prototype.defaultParent

Specifies the default parent to be used to insert new cells.  This is used in getDefaultParent.  Default is null.

+

defaultParent

mxGraph.prototype.defaultParent

Specifies the default parent to be used to insert new cells.  This is used in getDefaultParent.  Default is null.

alternateEdgeStyle

mxGraph.prototype.alternateEdgeStyle

Specifies the alternate edge style to be used if the main control point on an edge is being doubleclicked.  Default is null.

-

backgroundImage

mxGraph.prototype.backgroundImage

Specifies the mxImage to be returned by getBackgroundImage.  Default is null.

Example

var img = new mxImage('http://www.example.com/maps/examplemap.jpg', 1024, 768);
+

backgroundImage

mxGraph.prototype.backgroundImage

Specifies the mxImage to be returned by getBackgroundImage.  Default is null.

Example

var img = new mxImage('http://www.example.com/maps/examplemap.jpg', 1024, 768);
 graph.setBackgroundImage(img);
 graph.view.validate();

pageVisible

mxGraph.prototype.pageVisible

Specifies if the background page should be visible.  Default is false.  Not yet implemented.

-

pageBreaksVisible

mxGraph.prototype.pageBreaksVisible

Specifies if a dashed line should be drawn between multiple pages.  Default is false.  If you change this value while a graph is being displayed then you should call sizeDidChange to force an update of the display.

+

pageBreaksVisible

mxGraph.prototype.pageBreaksVisible

Specifies if a dashed line should be drawn between multiple pages.  Default is false.  If you change this value while a graph is being displayed then you should call sizeDidChange to force an update of the display.

pageBreakColor

mxGraph.prototype.pageBreakColor

Specifies the color for page breaks.  Default is ‘gray’.

@@ -197,95 +197,95 @@ graph.view.validate();

minPageBreakDist

mxGraph.prototype.minPageBreakDist

Specifies the minimum distance for page breaks to be visible.  Default is 20 (in pixels).

-

preferPageSize

mxGraph.prototype.preferPageSize

Specifies if the graph size should be rounded to the next page number in sizeDidChange.  This is only used if the graph container has scrollbars.  Default is false.

+

preferPageSize

mxGraph.prototype.preferPageSize

Specifies if the graph size should be rounded to the next page number in sizeDidChange.  This is only used if the graph container has scrollbars.  Default is false.

-

pageFormat

mxGraph.prototype.pageFormat

Specifies the page format for the background page.  Default is mxConstants.PAGE_FORMAT_A4_PORTRAIT.  This is used as the default in mxPrintPreview and for painting the background page if pageVisible is true and the pagebreaks if pageBreaksVisible is true.

+

pageFormat

mxGraph.prototype.pageFormat

Specifies the page format for the background page.  Default is mxConstants.PAGE_FORMAT_A4_PORTRAIT.  This is used as the default in mxPrintPreview and for painting the background page if pageVisible is true and the pagebreaks if pageBreaksVisible is true.

pageScale

mxGraph.prototype.pageScale

Specifies the scale of the background page.  Default is 1.5.  Not yet implemented.

-

enabled

mxGraph.prototype.enabled

Specifies the return value for isEnabled.  Default is true.

+

enabled

mxGraph.prototype.enabled

Specifies the return value for isEnabled.  Default is true.

-

escapeEnabled

mxGraph.prototype.escapeEnabled

Specifies if mxKeyHandler should invoke escape when the escape key is pressed.  Default is true.

+

escapeEnabled

mxGraph.prototype.escapeEnabled

Specifies if mxKeyHandler should invoke escape when the escape key is pressed.  Default is true.

-

invokesStopCellEditing

mxGraph.prototype.invokesStopCellEditing

If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.  This is implemented in a focus handler in mxCellEditor.  Default is true.

+

invokesStopCellEditing

mxGraph.prototype.invokesStopCellEditing

If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.  This is implemented in a focus handler in mxCellEditor.  Default is true.

-

enterStopsCellEditing

mxGraph.prototype.enterStopsCellEditing

If true, pressing the enter key without pressing control or shift will stop editing and accept the new value.  This is used in mxCellEditor to stop cell editing.  Note: You can always use F2 and escape to stop editing.  Default is false.

+

enterStopsCellEditing

mxGraph.prototype.enterStopsCellEditing

If true, pressing the enter key without pressing control or shift will stop editing and accept the new value.  This is used in mxCellEditor to stop cell editing.  Note: You can always use F2 and escape to stop editing.  Default is false.

-

useScrollbarsForPanning

mxGraph.prototype.useScrollbarsForPanning

Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.  If scrollbars are enabled in CSS, but no scrollbars appear because the graph is smaller than the container size, then no panning occurs if this is true.  Default is true.

+

useScrollbarsForPanning

mxGraph.prototype.useScrollbarsForPanning

Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.  If scrollbars are enabled in CSS, but no scrollbars appear because the graph is smaller than the container size, then no panning occurs if this is true.  Default is true.

-

exportEnabled

mxGraph.prototype.exportEnabled

Specifies the return value for canExportCell.  Default is true.

+

exportEnabled

mxGraph.prototype.exportEnabled

Specifies the return value for canExportCell.  Default is true.

-

importEnabled

mxGraph.prototype.importEnabled

Specifies the return value for canImportCell.  Default is true.

+

importEnabled

mxGraph.prototype.importEnabled

Specifies the return value for canImportCell.  Default is true.

-

cellsLocked

mxGraph.prototype.cellsLocked

Specifies the return value for isCellLocked.  Default is false.

+

cellsLocked

mxGraph.prototype.cellsLocked

Specifies the return value for isCellLocked.  Default is false.

-

cellsCloneable

mxGraph.prototype.cellsCloneable

Specifies the return value for isCellCloneable.  Default is true.

+

cellsCloneable

mxGraph.prototype.cellsCloneable

Specifies the return value for isCellCloneable.  Default is true.

foldingEnabled

mxGraph.prototype.foldingEnabled

Specifies if folding (collapse and expand via an image icon in the graph should be enabled).  Default is true.

-

cellsEditable

mxGraph.prototype.cellsEditable

Specifies the return value for isCellEditable.  Default is true.

+

cellsEditable

mxGraph.prototype.cellsEditable

Specifies the return value for isCellEditable.  Default is true.

-

cellsDeletable

mxGraph.prototype.cellsDeletable

Specifies the return value for isCellDeletable.  Default is true.

+

cellsDeletable

mxGraph.prototype.cellsDeletable

Specifies the return value for isCellDeletable.  Default is true.

-

cellsMovable

mxGraph.prototype.cellsMovable

Specifies the return value for isCellMovable.  Default is true.

+

cellsMovable

mxGraph.prototype.cellsMovable

Specifies the return value for isCellMovable.  Default is true.

-

edgeLabelsMovable

mxGraph.prototype.edgeLabelsMovable

Specifies the return value for edges in isLabelMovable.  Default is true.

+

edgeLabelsMovable

mxGraph.prototype.edgeLabelsMovable

Specifies the return value for edges in isLabelMovable.  Default is true.

-

vertexLabelsMovable

mxGraph.prototype.vertexLabelsMovable

Specifies the return value for vertices in isLabelMovable.  Default is false.

+

vertexLabelsMovable

mxGraph.prototype.vertexLabelsMovable

Specifies the return value for vertices in isLabelMovable.  Default is false.

-

dropEnabled

mxGraph.prototype.dropEnabled

Specifies the return value for isDropEnabled.  Default is false.

+

dropEnabled

mxGraph.prototype.dropEnabled

Specifies the return value for isDropEnabled.  Default is false.

splitEnabled

mxGraph.prototype.splitEnabled

Specifies if dropping onto edges should be enabled.  Default is true.

-

cellsResizable

mxGraph.prototype.cellsResizable

Specifies the return value for isCellResizable.  Default is true.

+

cellsResizable

mxGraph.prototype.cellsResizable

Specifies the return value for isCellResizable.  Default is true.

-

cellsBendable

mxGraph.prototype.cellsBendable

Specifies the return value for isCellsBendable.  Default is true.

+

cellsBendable

mxGraph.prototype.cellsBendable

Specifies the return value for isCellsBendable.  Default is true.

-

cellsSelectable

mxGraph.prototype.cellsSelectable

Specifies the return value for isCellSelectable.  Default is true.

+

cellsSelectable

mxGraph.prototype.cellsSelectable

Specifies the return value for isCellSelectable.  Default is true.

cellsDisconnectable

mxGraph.prototype.cellsDisconnectable

Specifies the return value for <isCellDisconntable>.  Default is true.

-

autoSizeCells

mxGraph.prototype.autoSizeCells

Specifies if the graph should automatically update the cell size after an edit.  This is used in isAutoSizeCell.  Default is false.

+

autoSizeCells

mxGraph.prototype.autoSizeCells

Specifies if the graph should automatically update the cell size after an edit.  This is used in isAutoSizeCell.  Default is false.

-

autoScroll

mxGraph.prototype.autoScroll

Specifies if the graph should automatically scroll if the mouse goes near the container edge while dragging.  This is only taken into account if the container has scrollbars.  Default is true.

If you need this to work without scrollbars then set ignoreScrollbars to true.

+

autoScroll

mxGraph.prototype.autoScroll

Specifies if the graph should automatically scroll if the mouse goes near the container edge while dragging.  This is only taken into account if the container has scrollbars.  Default is true.

If you need this to work without scrollbars then set ignoreScrollbars to true.

-

timerAutoScroll

mxGraph.prototype.timerAutoScroll

Specifies if timer-based autoscrolling should be used via mxPanningManager.  Note that this disables the code in scrollPointToVisible and uses code in mxPanningManager instead.  Note that autoExtend is disabled if this is true and that this should only be used with a scroll buffer or when scollbars are visible and scrollable in all directions.  Default is false.

+

timerAutoScroll

mxGraph.prototype.timerAutoScroll

Specifies if timer-based autoscrolling should be used via mxPanningManager.  Note that this disables the code in scrollPointToVisible and uses code in mxPanningManager instead.  Note that autoExtend is disabled if this is true and that this should only be used with a scroll buffer or when scollbars are visible and scrollable in all directions.  Default is false.

-

allowAutoPanning

mxGraph.prototype.allowAutoPanning

Specifies if panning via panGraph should be allowed to implement autoscroll if no scrollbars are available in scrollPointToVisible.  Default is false.

+

allowAutoPanning

mxGraph.prototype.allowAutoPanning

Specifies if panning via panGraph should be allowed to implement autoscroll if no scrollbars are available in scrollPointToVisible.  Default is false.

ignoreScrollbars

mxGraph.prototype.ignoreScrollbars

Specifies if the graph should automatically scroll regardless of the scrollbars.

-

autoExtend

mxGraph.prototype.autoExtend

Specifies if the size of the graph should be automatically extended if the mouse goes near the container edge while dragging.  This is only taken into account if the container has scrollbars.  Default is true.  See autoScroll.

+

autoExtend

mxGraph.prototype.autoExtend

Specifies if the size of the graph should be automatically extended if the mouse goes near the container edge while dragging.  This is only taken into account if the container has scrollbars.  Default is true.  See autoScroll.

-

maximumGraphBounds

mxGraph.prototype.maximumGraphBounds

mxRectangle that specifies the area in which all cells in the diagram should be placed.  Uses in getMaximumGraphBounds.  Use a width or height of 0 if you only want to give a upper, left corner.

+

maximumGraphBounds

mxGraph.prototype.maximumGraphBounds

mxRectangle that specifies the area in which all cells in the diagram should be placed.  Uses in getMaximumGraphBounds.  Use a width or height of 0 if you only want to give a upper, left corner.

-

minimumGraphSize

mxGraph.prototype.minimumGraphSize

mxRectangle that specifies the minimum size of the graph.  This is ignored if the graph container has no scrollbars.  Default is null.

+

minimumGraphSize

mxGraph.prototype.minimumGraphSize

mxRectangle that specifies the minimum size of the graph.  This is ignored if the graph container has no scrollbars.  Default is null.

-

minimumContainerSize

mxGraph.prototype.minimumContainerSize

mxRectangle that specifies the minimum size of the <container> if resizeContainer is true.

+

minimumContainerSize

mxGraph.prototype.minimumContainerSize

mxRectangle that specifies the minimum size of the <container> if resizeContainer is true.

-

maximumContainerSize

mxGraph.prototype.maximumContainerSize

mxRectangle that specifies the maximum size of the container if resizeContainer is true.

+

maximumContainerSize

mxGraph.prototype.maximumContainerSize

mxRectangle that specifies the maximum size of the container if resizeContainer is true.

resizeContainer

mxGraph.prototype.resizeContainer

Specifies if the container should be resized to the graph size when the graph size has changed.  Default is false.

border

mxGraph.prototype.border

Border to be added to the bottom and right side when the container is being resized after the graph has been changed.  Default is 0.

-

ordered

mxGraph.prototype.ordered

Specifies if the display should reflect the order of the cells in the model.  Default is true.  This has precendence over keepEdgesInBackground and keepEdgesInForeground.

+

ordered

mxGraph.prototype.ordered

Specifies if the display should reflect the order of the cells in the model.  Default is true.  This has precendence over keepEdgesInBackground and keepEdgesInForeground.

-

keepEdgesInForeground

mxGraph.prototype.keepEdgesInForeground

Specifies if edges should appear in the foreground regardless of their order in the model.  This has precendence over <keepEdgeInBackground>, but not over ordered.  Default is false.

+

keepEdgesInForeground

mxGraph.prototype.keepEdgesInForeground

Specifies if edges should appear in the foreground regardless of their order in the model.  This has precendence over <keepEdgeInBackground>, but not over ordered.  Default is false.

-

keepEdgesInBackground

mxGraph.prototype.keepEdgesInBackground

Specifies if edges should appear in the background regardless of their order in the model.  ordered and keepEdgesInForeground have precedence over this setting.  Default is true.

+

keepEdgesInBackground

mxGraph.prototype.keepEdgesInBackground

Specifies if edges should appear in the background regardless of their order in the model.  ordered and keepEdgesInForeground have precedence over this setting.  Default is true.

allowNegativeCoordinates

mxGraph.prototype.allowNegativeCoordinates

Specifies if negative coordinates for vertices are allowed.  Default is true.

-

constrainChildren

mxGraph.prototype.constrainChildren

Specifies the return value for isConstrainChildren.  Default is true.

+

constrainChildren

mxGraph.prototype.constrainChildren

Specifies the return value for isConstrainChildren.  Default is true.

extendParents

mxGraph.prototype.extendParents

Specifies if a parent should contain the child bounds after a resize of the child.  Default is true.

-

extendParentsOnAdd

mxGraph.prototype.extendParentsOnAdd

Specifies if parents should be extended according to the extendParents switch if cells are added.  Default is true.

+

extendParentsOnAdd

mxGraph.prototype.extendParentsOnAdd

Specifies if parents should be extended according to the extendParents switch if cells are added.  Default is true.

collapseToPreferredSize

mxGraph.prototype.collapseToPreferredSize

Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.  Default is true.

-

zoomFactor

mxGraph.prototype.zoomFactor

Specifies the factor used for zoomIn and zoomOut.  Default is 1.2 (120%).

+

zoomFactor

mxGraph.prototype.zoomFactor

Specifies the factor used for zoomIn and zoomOut.  Default is 1.2 (120%).

keepSelectionVisibleOnZoom

mxGraph.prototype.keepSelectionVisibleOnZoom

Specifies if the viewport should automatically contain the selection cells after a zoom operation.  Default is false.

@@ -301,7 +301,7 @@ graph.view.validate();

allowLoops

mxGraph.prototype.allowLoops

Specifies if loops (aka self-references) are allowed.  Default is false.

-

defaultLoopStyle

mxGraph.prototype.defaultLoopStyle

mxEdgeStyle to be used for loops.  This is a fallback for loops if the mxConstants.STYLE_LOOP is undefined.  Default is mxEdgeStyle.Loop.

+

defaultLoopStyle

mxGraph.prototype.defaultLoopStyle

mxEdgeStyle to be used for loops.  This is a fallback for loops if the mxConstants.STYLE_LOOP is undefined.  Default is mxEdgeStyle.Loop.

multigraph

mxGraph.prototype.multigraph

Specifies if multiple edges in the same direction between the same pair of vertices are allowed.  Default is true.

@@ -313,31 +313,31 @@ graph.view.validate();

disconnectOnMove

mxGraph.prototype.disconnectOnMove

Specifies if edges should be disconnected from their terminals when they are moved.  Default is true.

-

labelsVisible

mxGraph.prototype.labelsVisible

Specifies if labels should be visible.  This is used in getLabel.  Default is true.

+

labelsVisible

mxGraph.prototype.labelsVisible

Specifies if labels should be visible.  This is used in getLabel.  Default is true.

-

htmlLabels

mxGraph.prototype.htmlLabels

Specifies the return value for isHtmlLabel.  Default is false.

+

htmlLabels

mxGraph.prototype.htmlLabels

Specifies the return value for isHtmlLabel.  Default is false.

swimlaneSelectionEnabled

mxGraph.prototype.swimlaneSelectionEnabled

Specifies if swimlanes should be selectable via the content if the mouse is released.  Default is true.

swimlaneNesting

mxGraph.prototype.swimlaneNesting

Specifies if nesting of swimlanes is allowed.  Default is true.

-

swimlaneIndicatorColorAttribute

mxGraph.prototype.swimlaneIndicatorColorAttribute

The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.  Default is mxConstants.STYLE_FILLCOLOR.

+

swimlaneIndicatorColorAttribute

mxGraph.prototype.swimlaneIndicatorColorAttribute

The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.  Default is mxConstants.STYLE_FILLCOLOR.

imageBundles

mxGraph.prototype.imageBundles

Holds the list of image bundles.

-

minFitScale

mxGraph.prototype.minFitScale

Specifies the minimum scale to be applied in fit.  Default is 0.1.  Set this to null to allow any value.

+

minFitScale

mxGraph.prototype.minFitScale

Specifies the minimum scale to be applied in fit.  Default is 0.1.  Set this to null to allow any value.

-

maxFitScale

mxGraph.prototype.maxFitScale

Specifies the maximum scale to be applied in fit.  Default is 8.  Set this to null to allow any value.

+

maxFitScale

mxGraph.prototype.maxFitScale

Specifies the maximum scale to be applied in fit.  Default is 8.  Set this to null to allow any value.

panDx

mxGraph.prototype.panDx

Current horizontal panning value.  Default is 0.

panDy

mxGraph.prototype.panDy

Current vertical panning value.  Default is 0.

-

collapsedImage

mxGraph.prototype.collapsedImage

Specifies the mxImage to indicate a collapsed state.  Default value is mxClient.imageBasePath + ‘/collapsed.gif’

+

collapsedImage

mxGraph.prototype.collapsedImage

Specifies the mxImage to indicate a collapsed state.  Default value is mxClient.imageBasePath + ‘/collapsed.gif’

-

expandedImage

mxGraph.prototype.expandedImage

Specifies the mxImage to indicate a expanded state.  Default value is mxClient.imageBasePath + ‘/expanded.gif’

+

expandedImage

mxGraph.prototype.expandedImage

Specifies the mxImage to indicate a expanded state.  Default value is mxClient.imageBasePath + ‘/expanded.gif’

-

warningImage

mxGraph.prototype.warningImage

Specifies the mxImage for the image to be used to display a warning overlay.  See setCellWarning.  Default value is mxClient.imageBasePath + ‘/warning’.  The extension for the image depends on the platform.  It is ‘.png’ on the Mac and ‘.gif’ on all other platforms.

+

warningImage

mxGraph.prototype.warningImage

Specifies the mxImage for the image to be used to display a warning overlay.  See setCellWarning.  Default value is mxClient.imageBasePath + ‘/warning’.  The extension for the image depends on the platform.  It is ‘.png’ on the Mac and ‘.gif’ on all other platforms.

alreadyConnectedResource

mxGraph.prototype.alreadyConnectedResource

Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.  If the resource for this key does not exist then the value is used as the error message.  Default is ‘alreadyConnected’.

@@ -347,67 +347,67 @@ graph.view.validate();

init

mxGraph.prototype.init = function(container)

Initializes the <container> and creates the respective datastructures.

Parameters

containerDOM node that will contain the graph display.
-

createHandlers

mxGraph.prototype.createHandlers = function(container)

Creates the tooltip-, panning-, connection- and graph-handler (in this order).  This is called in the constructor before init is called.

+

createHandlers

mxGraph.prototype.createHandlers = function(container)

Creates the tooltip-, panning-, connection- and graph-handler (in this order).  This is called in the constructor before init is called.

-

createSelectionModel

mxGraph.prototype.createSelectionModel = function()

Creates a new mxGraphSelectionModel to be used in this graph.

+

createSelectionModel

mxGraph.prototype.createSelectionModel = function()

Creates a new mxGraphSelectionModel to be used in this graph.

-

createStylesheet

mxGraph.prototype.createStylesheet = function()

Creates a new mxGraphSelectionModel to be used in this graph.

+

createStylesheet

mxGraph.prototype.createStylesheet = function()

Creates a new mxGraphSelectionModel to be used in this graph.

-

createGraphView

mxGraph.prototype.createGraphView = function()

Creates a new mxGraphView to be used in this graph.

+

createGraphView

mxGraph.prototype.createGraphView = function()

Creates a new mxGraphView to be used in this graph.

-

createCellRenderer

mxGraph.prototype.createCellRenderer = function()

Creates a new mxCellRenderer to be used in this graph.

+

createCellRenderer

mxGraph.prototype.createCellRenderer = function()

Creates a new mxCellRenderer to be used in this graph.

-

createCellEditor

mxGraph.prototype.createCellEditor = function()

Creates a new mxCellEditor to be used in this graph.

+

createCellEditor

mxGraph.prototype.createCellEditor = function()

Creates a new mxCellEditor to be used in this graph.

-

getModel

mxGraph.prototype.getModel = function()

Returns the mxGraphModel that contains the cells.

+

getModel

mxGraph.prototype.getModel = function()

Returns the mxGraphModel that contains the cells.

-

getView

mxGraph.prototype.getView = function()

Returns the mxGraphView that contains the mxCellStates.

+

getView

mxGraph.prototype.getView = function()

Returns the mxGraphView that contains the mxCellStates.

-

getStylesheet

mxGraph.prototype.getStylesheet = function()

Returns the mxStylesheet that defines the style.

+

getStylesheet

mxGraph.prototype.getStylesheet = function()

Returns the mxStylesheet that defines the style.

-

setStylesheet

mxGraph.prototype.setStylesheet = function(stylesheet)

Sets the mxStylesheet that defines the style.

+

setStylesheet

mxGraph.prototype.setStylesheet = function(stylesheet)

Sets the mxStylesheet that defines the style.

-

getSelectionModel

mxGraph.prototype.getSelectionModel = function()

Returns the mxGraphSelectionModel that contains the selection.

+

getSelectionModel

mxGraph.prototype.getSelectionModel = function()

Returns the mxGraphSelectionModel that contains the selection.

setSelectionModel

mxGraph.prototype.setSelectionModel = function(selectionModel)

Sets the <mxSelectionModel> that contains the selection.

getSelectionCellsForChanges

mxGraph.prototype.getSelectionCellsForChanges = function(changes)

Returns the cells to be selected for the given array of changes.

-

graphModelChanged

mxGraph.prototype.graphModelChanged = function(changes)

Called when the graph model changes.  Invokes processChange on each item of the given array to update the view accordingly.

Parameters

changesArray that contains the individual changes.
+

graphModelChanged

mxGraph.prototype.graphModelChanged = function(changes)

Called when the graph model changes.  Invokes processChange on each item of the given array to update the view accordingly.

Parameters

changesArray that contains the individual changes.

getRemovedCellsForChanges

mxGraph.prototype.getRemovedCellsForChanges = function(changes)

Returns the cells that have been removed from the model.

-

processChange

mxGraph.prototype.processChange = function(change)

Processes the given change and invalidates the respective cached data in view.  This fires a <root> event if the root has changed in the model.

Parameters

changeObject that represents the change on the model.
+

processChange

mxGraph.prototype.processChange = function(change)

Processes the given change and invalidates the respective cached data in view.  This fires a <root> event if the root has changed in the model.

Parameters

changeObject that represents the change on the model.
-

removeStateForCell

mxGraph.prototype.removeStateForCell = function(cell)

Removes all cached information for the given cell and its descendants.  This is called when a cell was removed from the model.

Paramters

cellmxCell that was removed from the model.
+

removeStateForCell

mxGraph.prototype.removeStateForCell = function(cell)

Removes all cached information for the given cell and its descendants.  This is called when a cell was removed from the model.

Paramters

cellmxCell that was removed from the model.

Overlays

-

addCellOverlay

mxGraph.prototype.addCellOverlay = function(cell,
overlay)

Adds an mxCellOverlay for the specified cell.  This method fires an <addoverlay> event and returns the new mxCellOverlay.

Parameters

cellmxCell to add the overlay for.
overlaymxCellOverlay to be added for the cell.
+

addCellOverlay

mxGraph.prototype.addCellOverlay = function(cell,
overlay)

Adds an mxCellOverlay for the specified cell.  This method fires an <addoverlay> event and returns the new mxCellOverlay.

Parameters

cellmxCell to add the overlay for.
overlaymxCellOverlay to be added for the cell.
-

getCellOverlays

mxGraph.prototype.getCellOverlays = function(cell)

Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.

Parameters

cellmxCell whose overlays should be returned.
+

getCellOverlays

mxGraph.prototype.getCellOverlays = function(cell)

Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.

Parameters

cellmxCell whose overlays should be returned.
-

removeCellOverlay

mxGraph.prototype.removeCellOverlay = function(cell,
overlay)

Removes and returns the given mxCellOverlay from the given cell.  This method fires a <removeoverlay> event.  If no overlay is given, then all overlays are removed using <removeOverlays>.

Parameters

cellmxCell whose overlay should be removed.
overlayOptional mxCellOverlay to be removed.
+

removeCellOverlay

mxGraph.prototype.removeCellOverlay = function(cell,
overlay)

Removes and returns the given mxCellOverlay from the given cell.  This method fires a <removeoverlay> event.  If no overlay is given, then all overlays are removed using <removeOverlays>.

Parameters

cellmxCell whose overlay should be removed.
overlayOptional mxCellOverlay to be removed.
-

removeCellOverlays

mxGraph.prototype.removeCellOverlays = function(cell)

Removes all mxCellOverlays from the given cell.  This method fires a <removeoverlay> event for each mxCellOverlay and returns the array of mxCellOverlays that was removed from the cell.

Parameters

cellmxCell whose overlays should be removed
+

removeCellOverlays

mxGraph.prototype.removeCellOverlays = function(cell)

Removes all mxCellOverlays from the given cell.  This method fires a <removeoverlay> event for each mxCellOverlay and returns the array of mxCellOverlays that was removed from the cell.

Parameters

cellmxCell whose overlays should be removed
-

clearCellOverlays

mxGraph.prototype.clearCellOverlays = function(cell)

Removes all mxCellOverlays in the graph for the given cell and all its descendants.  If no cell is specified then all overlays are removed from the graph.  This implementation uses removeCellOverlays to remove the overlays from the individual cells.

Parameters

cellOptional mxCell that represents the root of the subtree to remove the overlays from.  Default is the root in the model.
+

clearCellOverlays

mxGraph.prototype.clearCellOverlays = function(cell)

Removes all mxCellOverlays in the graph for the given cell and all its descendants.  If no cell is specified then all overlays are removed from the graph.  This implementation uses removeCellOverlays to remove the overlays from the individual cells.

Parameters

cellOptional mxCell that represents the root of the subtree to remove the overlays from.  Default is the root in the model.
-

setCellWarning

mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)

Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.  The warning is displayed as a tooltip in a red font and may contain HTML markup.  If the warning is null or a zero length string, then all overlays are removed from the cell.

Example

graph.setCellWarning(cell, '<b>Warning:</b>: Hello, World!');

Parameters

cellmxCell whose warning should be set.
warningString that represents the warning to be displayed.
imgOptional mxImage to be used for the overlay.  Default is <warningImageBasename>.
isSelectOptional boolean indicating if a click on the overlay should select the corresponding cell.  Default is false.
+

setCellWarning

mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)

Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.  The warning is displayed as a tooltip in a red font and may contain HTML markup.  If the warning is null or a zero length string, then all overlays are removed from the cell.

Example

graph.setCellWarning(cell, '<b>Warning:</b>: Hello, World!');

Parameters

cellmxCell whose warning should be set.
warningString that represents the warning to be displayed.
imgOptional mxImage to be used for the overlay.  Default is <warningImageBasename>.
isSelectOptional boolean indicating if a click on the overlay should select the corresponding cell.  Default is false.

In-place editing

-

startEditing

mxGraph.prototype.startEditing = function(evt)

Calls startEditingAtCell using the given cell or the first selection cell.

Parameters

evtOptional mouse event that triggered the editing.
+

startEditing

mxGraph.prototype.startEditing = function(evt)

Calls startEditingAtCell using the given cell or the first selection cell.

Parameters

evtOptional mouse event that triggered the editing.
-

startEditingAtCell

mxGraph.prototype.startEditingAtCell = function(cell,
evt)

Fires a startEditing event and invokes mxCellEditor.startEditing on <editor>.

Parameters

cellmxCell to start the in-place editor for.
evtOptional mouse event that triggered the editing.
+

startEditingAtCell

mxGraph.prototype.startEditingAtCell = function(cell,
evt)

Fires a startEditing event and invokes mxCellEditor.startEditing on <editor>.

Parameters

cellmxCell to start the in-place editor for.
evtOptional mouse event that triggered the editing.
-

getEditingValue

mxGraph.prototype.getEditingValue = function(cell,
evt)

Returns the initial value for in-place editing.  This implementation returns convertValueToString for the given cell.  If this function is overridden, then mxGraphModel.valueForCellChanged should take care of correctly storing the actual new value inside the user object.

Parameters

cellmxCell for which the initial editing value should be returned.
evtOptional mouse event that triggered the editor.
+

getEditingValue

mxGraph.prototype.getEditingValue = function(cell,
evt)

Returns the initial value for in-place editing.  This implementation returns convertValueToString for the given cell.  If this function is overridden, then mxGraphModel.valueForCellChanged should take care of correctly storing the actual new value inside the user object.

Parameters

cellmxCell for which the initial editing value should be returned.
evtOptional mouse event that triggered the editor.

stopEditing

mxGraph.prototype.stopEditing = function(cancel)

Stops the current editing.

Parameters

cancelBoolean that specifies if the current editing value should be stored.
-

labelChanged

mxGraph.prototype.labelChanged = function(cell,
value,
evt)

Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.  Returns the cell whose label was changed.

Parameters

cellmxCell whose label should be changed.
valueNew label to be assigned.
evtOptional event that triggered the change.
+

labelChanged

mxGraph.prototype.labelChanged = function(cell,
value,
evt)

Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.  Returns the cell whose label was changed.

Parameters

cellmxCell whose label should be changed.
valueNew label to be assigned.
evtOptional event that triggered the change.
-

cellLabelChanged

mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)

Sets the new label for a cell.  If autoSize is true then cellSizeUpdated will be called.

In the following example, the function is extended to map changes to attributes in an XML node, as shown in convertValueToString.  Alternatively, the handling of this can be implemented as shown in mxGraphModel.valueForCellChanged without the need to clone the user object.

var graphCellLabelChanged = graph.cellLabelChanged;
+

cellLabelChanged

mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)

Sets the new label for a cell.  If autoSize is true then cellSizeUpdated will be called.

In the following example, the function is extended to map changes to attributes in an XML node, as shown in convertValueToString.  Alternatively, the handling of this can be implemented as shown in mxGraphModel.valueForCellChanged without the need to clone the user object.

var graphCellLabelChanged = graph.cellLabelChanged;
 graph.cellLabelChanged = function(cell, newValue, autoSize)
 {
  // Cloned for correct undo/redo
@@ -416,13 +416,13 @@ graph.cellLabelChanged = function(cell, newValue, autoSize)
 
  newValue = elt;
  graphCellLabelChanged.apply(this, arguments);
-};

Parameters

cellmxCell whose label should be changed.
valueNew label to be assigned.
autoSizeBoolean that specifies if cellSizeUpdated should be called.
+};

Parameters

cellmxCell whose label should be changed.
valueNew label to be assigned.
autoSizeBoolean that specifies if cellSizeUpdated should be called.

Event processing

escape

mxGraph.prototype.escape = function(evt)

Processes an escape keystroke.

Parameters

evtMouseevent that represents the keystroke.
-

click

mxGraph.prototype.click = function(me)

Processes a singleclick on an optional cell and fires a click event.  The click event is fired initially.  If the graph is enabled and the event has not been consumed, then the cell is selected using selectCellForEvent or the selection is cleared using clearSelection.  The events consumed state is set to true if the corresponding mxMouseEvent has been consumed.

Parameters

memxMouseEvent that represents the single click.
+

click

mxGraph.prototype.click = function(me)

Processes a singleclick on an optional cell and fires a click event.  The click event is fired initially.  If the graph is enabled and the event has not been consumed, then the cell is selected using selectCellForEvent or the selection is cleared using clearSelection.  The events consumed state is set to true if the corresponding mxMouseEvent has been consumed.

Parameters

memxMouseEvent that represents the single click.

dblClick

mxGraph.prototype.dblClick = function(evt,
cell)

Processes a doubleclick on an optional cell and fires a <dblclick> event.  The event is fired initially.  If the graph is enabled and the event has not been consumed, then <edit> is called with the given cell.  The event is ignored if no cell was specified.

Example

graph.dblClick = function(evt, cell)
 {
@@ -434,43 +434,45 @@ graph.cellLabelChanged = function(cell, newValue, autoSize)
     mxUtils.alert('Hello, World!');
     mxe.consume();
   }
-}

Parameters

evtMouseevent that represents the doubleclick.
cellOptional mxCell under the mousepointer.
+}

Parameters

evtMouseevent that represents the doubleclick.
cellOptional mxCell under the mousepointer.

scrollPointToVisible

mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)

Scrolls the graph to the given point, extending the graph container if specified.

-

createPanningManager

mxGraph.prototype.createPanningManager = function()

Creates and returns an mxPanningManager.

+

createPanningManager

mxGraph.prototype.createPanningManager = function()

Creates and returns an mxPanningManager.

-

getOffsetSize

mxGraph.prototype.getOffsetSize = function()

Returns the actual size of the the viewport minus padding and border sizes.  The value is returned in the width and height of an mxRectangle.

+

getBorderSizes

mxGraph.prototype.getBorderSizes = function()

Returns the size of the border and padding on all four sides of the container.  The left, top, right and bottom borders are stored in the x, y, width and height of the returned mxRectangle, respectively.

-

getPreferredPageSize

mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)

Returns the preferred size of the background page if preferPageSize is true.

+

getPreferredPageSize

mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)

Returns the preferred size of the background page if preferPageSize is true.

sizeDidChange

mxGraph.prototype.sizeDidChange = function()

Called when the size of the graph has changed.  This implementation fires a <size> event after updating the clipping region of the SVG element in SVG-bases browsers.

-

redrawPageBreaks

Invokes from sizeDidChange to redraw the page breaks.

Parameters

visibleBoolean that specifies if page breaks should be shown.
widthSpecifies the width of the container in pixels.
heightSpecifies the height of the container in pixels.
+

doResizeContainer

mxGraph.prototype.doResizeContainer = function(width,
height)

Resizes the container for the given graph width and height.

+ +

redrawPageBreaks

Invokes from sizeDidChange to redraw the page breaks.

Parameters

visibleBoolean that specifies if page breaks should be shown.
widthSpecifies the width of the container in pixels.
heightSpecifies the height of the container in pixels.

Cell styles

-

getCellStyle

mxGraph.prototype.getCellStyle = function(cell)

Returns an array of key, value pairs representing the cell style for the given cell.  If no string is defined in the model that specifies the style, then the default style for the cell is returned or EMPTY_ARRAY, if not style can be found.  Note: You should try and get the cell state for the given cell and use the cached style in the state before using this method.

Parameters

cellmxCell whose style should be returned as an array.
+

getCellStyle

mxGraph.prototype.getCellStyle = function(cell)

Returns an array of key, value pairs representing the cell style for the given cell.  If no string is defined in the model that specifies the style, then the default style for the cell is returned or EMPTY_ARRAY, if not style can be found.  Note: You should try and get the cell state for the given cell and use the cached style in the state before using this method.

Parameters

cellmxCell whose style should be returned as an array.

postProcessCellStyle

mxGraph.prototype.postProcessCellStyle = function(style)

Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.

-

setCellStyle

mxGraph.prototype.setCellStyle = function(style,
cells)

Sets the style of the specified cells.  If no cells are given, then the selection cells are changed.

Parameters

styleString representing the new style of the cells.
cellsOptional array of mxCells to set the style for.  Default is the selection cells.
+

setCellStyle

mxGraph.prototype.setCellStyle = function(style,
cells)

Sets the style of the specified cells.  If no cells are given, then the selection cells are changed.

Parameters

styleString representing the new style of the cells.
cellsOptional array of mxCells to set the style for.  Default is the selection cells.
-

toggleCellStyle

mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)

Toggles the boolean value for the given key in the style of the given cell.  If no cell is specified then the selection cell is used.

Parameter

keyString representing the key for the boolean value to be toggled.
defaultValueOptional boolean default value if no value is defined.  Default is false.
cellOptional mxCell whose style should be modified.  Default is the selection cell.
+

toggleCellStyle

mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)

Toggles the boolean value for the given key in the style of the given cell.  If no cell is specified then the selection cell is used.

Parameter

keyString representing the key for the boolean value to be toggled.
defaultValueOptional boolean default value if no value is defined.  Default is false.
cellOptional mxCell whose style should be modified.  Default is the selection cell.
-

toggleCellStyles

mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)

Toggles the boolean value for the given key in the style of the given cells.  If no cells are specified, then the selection cells are used.  For example, this can be used to toggle mxConstants.STYLE_ROUNDED or any other style with a boolean value.

Parameter

keyString representing the key for the boolean value to be toggled.
defaultValueOptional boolean default value if no value is defined.  Default is false.
cellsOptional array of mxCells whose styles should be modified.  Default is the selection cells.
+

toggleCellStyles

mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)

Toggles the boolean value for the given key in the style of the given cells.  If no cells are specified, then the selection cells are used.  For example, this can be used to toggle mxConstants.STYLE_ROUNDED or any other style with a boolean value.

Parameter

keyString representing the key for the boolean value to be toggled.
defaultValueOptional boolean default value if no value is defined.  Default is false.
cellsOptional array of mxCells whose styles should be modified.  Default is the selection cells.
-

setCellStyles

mxGraph.prototype.setCellStyles = function(key,
value,
cells)

Sets the key to value in the styles of the given cells.  This will modify the existing cell styles in-place and override any existing assignment for the given key.  If no cells are specified, then the selection cells are changed.  If no value is specified, then the respective key is removed from the styles.

Parameters

keyString representing the key to be assigned.
valueString representing the new value for the key.
cellsOptional array of mxCells to change the style for.  Default is the selection cells.
+

setCellStyles

mxGraph.prototype.setCellStyles = function(key,
value,
cells)

Sets the key to value in the styles of the given cells.  This will modify the existing cell styles in-place and override any existing assignment for the given key.  If no cells are specified, then the selection cells are changed.  If no value is specified, then the respective key is removed from the styles.

Parameters

keyString representing the key to be assigned.
valueString representing the new value for the key.
cellsOptional array of mxCells to change the style for.  Default is the selection cells.
-

toggleCellStyleFlags

mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)

Toggles the given bit for the given key in the styles of the specified cells.

Parameters

keyString representing the key to toggle the flag in.
flagInteger that represents the bit to be toggled.
cellsOptional array of mxCells to change the style for.  Default is the selection cells.
+

toggleCellStyleFlags

mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)

Toggles the given bit for the given key in the styles of the specified cells.

Parameters

keyString representing the key to toggle the flag in.
flagInteger that represents the bit to be toggled.
cellsOptional array of mxCells to change the style for.  Default is the selection cells.
-

setCellStyleFlags

mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)

Sets or toggles the given bit for the given key in the styles of the specified cells.

Parameters

keyString representing the key to toggle the flag in.
flagInteger that represents the bit to be toggled.
valueBoolean value to be used or null if the value should be toggled.
cellsOptional array of mxCells to change the style for.  Default is the selection cells.
+

setCellStyleFlags

mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)

Sets or toggles the given bit for the given key in the styles of the specified cells.

Parameters

keyString representing the key to toggle the flag in.
flagInteger that represents the bit to be toggled.
valueBoolean value to be used or null if the value should be toggled.
cellsOptional array of mxCells to change the style for.  Default is the selection cells.

Cell alignment and orientation

-

alignCells

mxGraph.prototype.alignCells = function(align,
cells,
param)

Aligns the given cells vertically or horizontally according to the given alignment using the optional parameter as the coordinate.

Parameters

alignSpecifies the alignment.  Possible values are all constants in mxConstants with an ALIGN prefix.
cellsArray of mxCells to be aligned.
paramOptional coordinate for the alignment.
+

alignCells

mxGraph.prototype.alignCells = function(align,
cells,
param)

Aligns the given cells vertically or horizontally according to the given alignment using the optional parameter as the coordinate.

Parameters

alignSpecifies the alignment.  Possible values are all constants in mxConstants with an ALIGN prefix.
cellsArray of mxCells to be aligned.
paramOptional coordinate for the alignment.
-

flipEdge

mxGraph.prototype.flipEdge = function(edge)

Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.  This method fires mxEvent.FLIP_EDGE while the transaction is in progress.  Returns the edge that was flipped.

Here is an example that overrides this implementation to invert the value of mxConstants.STYLE_ELBOW without removing any existing styles.

graph.flipEdge = function(edge)
+

flipEdge

mxGraph.prototype.flipEdge = function(edge)

Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.  This method fires mxEvent.FLIP_EDGE while the transaction is in progress.  Returns the edge that was flipped.

Here is an example that overrides this implementation to invert the value of mxConstants.STYLE_ELBOW without removing any existing styles.

graph.flipEdge = function(edge)
 {
   if (edge != null)
   {
@@ -486,29 +488,29 @@ graph.cellLabelChanged = function(cell, newValue, autoSize)
       this.setCellStyles(mxConstants.STYLE_ELBOW, value, [edge]);
     }
   }
-};

Parameters

edgemxCell whose style should be changed.
+};

Parameters

edgemxCell whose style should be changed.
-

addImageBundle

mxGraph.prototype.addImageBundle = function(bundle)

Adds the specified mxImageBundle.

+

addImageBundle

mxGraph.prototype.addImageBundle = function(bundle)

Adds the specified mxImageBundle.

-

removeImageBundle

mxGraph.prototype.removeImageBundle = function(bundle)

Removes the specified mxImageBundle.

+

removeImageBundle

mxGraph.prototype.removeImageBundle = function(bundle)

Removes the specified mxImageBundle.

-

getImageFromBundles

mxGraph.prototype.getImageFromBundles = function(key)

Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.

+

getImageFromBundles

mxGraph.prototype.getImageFromBundles = function(key)

Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.

Order

-

orderCells

mxGraph.prototype.orderCells = function(back,
cells)

Moves the given cells to the front or back.  The change is carried out using cellsOrdered.  This method fires mxEvent.ORDER_CELLS while the transaction is in progress.

Parameters

backBoolean that specifies if the cells should be moved to back.
cellsArray of mxCells to move to the background.  If null is specified then the selection cells are used.
+

orderCells

mxGraph.prototype.orderCells = function(back,
cells)

Moves the given cells to the front or back.  The change is carried out using cellsOrdered.  This method fires mxEvent.ORDER_CELLS while the transaction is in progress.

Parameters

backBoolean that specifies if the cells should be moved to back.
cellsArray of mxCells to move to the background.  If null is specified then the selection cells are used.
-

cellsOrdered

mxGraph.prototype.cellsOrdered = function(cells,
back)

Moves the given cells to the front or back.  This method fires mxEvent.CELLS_ORDERED while the transaction is in progress.

Parameters

cellsArray of mxCells whose order should be changed.
backBoolean that specifies if the cells should be moved to back.
+

cellsOrdered

mxGraph.prototype.cellsOrdered = function(cells,
back)

Moves the given cells to the front or back.  This method fires mxEvent.CELLS_ORDERED while the transaction is in progress.

Parameters

cellsArray of mxCells whose order should be changed.
backBoolean that specifies if the cells should be moved to back.

Grouping

-

groupCells

mxGraph.prototype.groupCells = function(group,
border,
cells)

Adds the cells into the given group.  The change is carried out using cellsAdded, cellsMoved and cellsResized.  This method fires mxEvent.GROUP_CELLS while the transaction is in progress.  Returns the new group.  A group is only created if there is at least one entry in the given array of cells.

Parameters

groupmxCell that represents the target group.  If null is specified then a new group is created using createGroupCell.
borderOptional integer that specifies the border between the child area and the group bounds.  Default is 0.
cellsOptional array of mxCells to be grouped.  If null is specified then the selection cells are used.
+

groupCells

mxGraph.prototype.groupCells = function(group,
border,
cells)

Adds the cells into the given group.  The change is carried out using cellsAdded, cellsMoved and cellsResized.  This method fires mxEvent.GROUP_CELLS while the transaction is in progress.  Returns the new group.  A group is only created if there is at least one entry in the given array of cells.

Parameters

groupmxCell that represents the target group.  If null is specified then a new group is created using createGroupCell.
borderOptional integer that specifies the border between the child area and the group bounds.  Default is 0.
cellsOptional array of mxCells to be grouped.  If null is specified then the selection cells are used.

getCellsForGroup

mxGraph.prototype.getCellsForGroup = function(cells)

Returns the cells with the same parent as the first cell in the given array.

getBoundsForGroup

mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)

Returns the bounds to be used for the given group and children.

-

createGroupCell

mxGraph.prototype.createGroupCell = function(cells)

Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the <group> function.

The following code can be used to set the style of new group cells.

var graphCreateGroupCell = graph.createGroupCell;
+

createGroupCell

mxGraph.prototype.createGroupCell = function(cells)

Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the <group> function.

The following code can be used to set the style of new group cells.

var graphCreateGroupCell = graph.createGroupCell;
 graph.createGroupCell = function(cells)
 {
   var group = graphCreateGroupCell.apply(this, arguments);
@@ -519,54 +521,54 @@ graph.createGroupCell = function(cells)
 
 

ungroupCells

mxGraph.prototype.ungroupCells = function(cells)

Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.  Returns the children that have been removed from the groups.

Parameters

cellsArray of cells to be ungrouped.  If null is specified then the selection cells are used.
-

removeCellsFromParent

mxGraph.prototype.removeCellsFromParent = function(cells)

Removes the specified cells from their parents and adds them to the default parent.  Returns the cells that were removed from their parents.

Parameters

cellsArray of mxCells to be removed from their parents.
+

removeCellsFromParent

mxGraph.prototype.removeCellsFromParent = function(cells)

Removes the specified cells from their parents and adds them to the default parent.  Returns the cells that were removed from their parents.

Parameters

cellsArray of mxCells to be removed from their parents.

updateGroupBounds

mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)

Updates the bounds of the given array of groups so that it includes all child vertices.

Parameters

cellsThe groups whose bounds should be updated.
borderOptional border to be added in the group.  Default is 0.
moveGroupOptional boolean that allows the group to be moved.  Default is false.

Cell cloning, insertion and removal

-

cloneCells

mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)

Returns the clones for the given cells.  If the terminal of an edge is not in the given array, then the respective end is assigned a terminal point and the terminal is removed.

Parameters

cellsArray of mxCells to be cloned.
allowInvalidEdgesOptional boolean that specifies if invalid edges should be cloned.  Default is true.
+

cloneCells

mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)

Returns the clones for the given cells.  If the terminal of an edge is not in the given array, then the respective end is assigned a terminal point and the terminal is removed.

Parameters

cellsArray of mxCells to be cloned.
allowInvalidEdgesOptional boolean that specifies if invalid edges should be cloned.  Default is true.
-

insertVertex

mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)

Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.  The id and style are used for the respective properties of the new mxCell, which is returned.

When adding new vertices from a mouse event, one should take into account the offset of the graph container and the scale and translation of the view in order to find the correct unscaled, untranslated coordinates using mxGraph.getPointForEvent as follows:

var pt = graph.getPointForEvent(evt);
+

insertVertex

mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)

Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.  The id and style are used for the respective properties of the new mxCell, which is returned.

When adding new vertices from a mouse event, one should take into account the offset of the graph container and the scale and translation of the view in order to find the correct unscaled, untranslated coordinates using mxGraph.getPointForEvent as follows:

var pt = graph.getPointForEvent(evt);
 var parent = graph.getDefaultParent();
 graph.insertVertex(parent, null,
-         'Hello, World!', x, y, 220, 30);

For adding image cells, the style parameter can be assigned as

stylename;image=imageUrl

See mxGraph for more information on using images.

Parameters

parentmxCell that specifies the parent of the new vertex.
idOptional string that defines the Id of the new vertex.
valueObject to be used as the user object.
xInteger that defines the x coordinate of the vertex.
yInteger that defines the y coordinate of the vertex.
widthInteger that defines the width of the vertex.
heightInteger that defines the height of the vertex.
styleOptional string that defines the cell style.
relativeOptional boolean that specifies if the geometry is relative.  Default is false.
+ 'Hello, World!', x, y, 220, 30);

For adding image cells, the style parameter can be assigned as

stylename;image=imageUrl

See mxGraph for more information on using images.

Parameters

parentmxCell that specifies the parent of the new vertex.
idOptional string that defines the Id of the new vertex.
valueObject to be used as the user object.
xInteger that defines the x coordinate of the vertex.
yInteger that defines the y coordinate of the vertex.
widthInteger that defines the width of the vertex.
heightInteger that defines the height of the vertex.
styleOptional string that defines the cell style.
relativeOptional boolean that specifies if the geometry is relative.  Default is false.
-

createVertex

mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)

Hook method that creates the new vertex for insertVertex.

+

createVertex

mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)

Hook method that creates the new vertex for insertVertex.

-

insertEdge

mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)

Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.  The id and style are used for the respective properties of the new mxCell, which is returned.

Parameters

parentmxCell that specifies the parent of the new edge.
idOptional string that defines the Id of the new edge.
valueJavaScript object to be used as the user object.
sourcemxCell that defines the source of the edge.
targetmxCell that defines the target of the edge.
styleOptional string that defines the cell style.
+

insertEdge

mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)

Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.  The id and style are used for the respective properties of the new mxCell, which is returned.

Parameters

parentmxCell that specifies the parent of the new edge.
idOptional string that defines the Id of the new edge.
valueJavaScript object to be used as the user object.
sourcemxCell that defines the source of the edge.
targetmxCell that defines the target of the edge.
styleOptional string that defines the cell style.
-

createEdge

mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)

Hook method that creates the new edge for insertEdge.  This implementation does not set the source and target of the edge, these are set when the edge is added to the model.

+

createEdge

mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)

Hook method that creates the new edge for insertEdge.  This implementation does not set the source and target of the edge, these are set when the edge is added to the model.

-

addEdge

mxGraph.prototype.addEdge = function(edge,
parent,
source,
target,
index)

Adds the edge to the parent and connects it to the given source and target terminals.  This is a shortcut method.  Returns the edge that was added.

Parameters

edgemxCell to be inserted into the given parent.
parentmxCell that represents the new parent.  If no parent is given then the default parent is used.
sourceOptional mxCell that represents the source terminal.
targetOptional mxCell that represents the target terminal.
indexOptional index to insert the cells at.  Default is to append.
+

addEdge

mxGraph.prototype.addEdge = function(edge,
parent,
source,
target,
index)

Adds the edge to the parent and connects it to the given source and target terminals.  This is a shortcut method.  Returns the edge that was added.

Parameters

edgemxCell to be inserted into the given parent.
parentmxCell that represents the new parent.  If no parent is given then the default parent is used.
sourceOptional mxCell that represents the source terminal.
targetOptional mxCell that represents the target terminal.
indexOptional index to insert the cells at.  Default is to append.
-

addCell

mxGraph.prototype.addCell = function(cell,
parent,
index,
source,
target)

Adds the cell to the parent and connects it to the given source and target terminals.  This is a shortcut method.  Returns the cell that was added.

Parameters

cellmxCell to be inserted into the given parent.
parentmxCell that represents the new parent.  If no parent is given then the default parent is used.
indexOptional index to insert the cells at.  Default is to append.
sourceOptional mxCell that represents the source terminal.
targetOptional mxCell that represents the target terminal.
+

addCell

mxGraph.prototype.addCell = function(cell,
parent,
index,
source,
target)

Adds the cell to the parent and connects it to the given source and target terminals.  This is a shortcut method.  Returns the cell that was added.

Parameters

cellmxCell to be inserted into the given parent.
parentmxCell that represents the new parent.  If no parent is given then the default parent is used.
indexOptional index to insert the cells at.  Default is to append.
sourceOptional mxCell that represents the source terminal.
targetOptional mxCell that represents the target terminal.
-

addCells

mxGraph.prototype.addCells = function(cells,
parent,
index,
source,
target)

Adds the cells to the parent at the given index, connecting each cell to the optional source and target terminal.  The change is carried out using cellsAdded.  This method fires mxEvent.ADD_CELLS while the transaction is in progress.  Returns the cells that were added.

Parameters

cellsArray of mxCells to be inserted.
parentmxCell that represents the new parent.  If no parent is given then the default parent is used.
indexOptional index to insert the cells at.  Default is to append.
sourceOptional source mxCell for all inserted cells.
targetOptional target mxCell for all inserted cells.
+

addCells

mxGraph.prototype.addCells = function(cells,
parent,
index,
source,
target)

Adds the cells to the parent at the given index, connecting each cell to the optional source and target terminal.  The change is carried out using cellsAdded.  This method fires mxEvent.ADD_CELLS while the transaction is in progress.  Returns the cells that were added.

Parameters

cellsArray of mxCells to be inserted.
parentmxCell that represents the new parent.  If no parent is given then the default parent is used.
indexOptional index to insert the cells at.  Default is to append.
sourceOptional source mxCell for all inserted cells.
targetOptional target mxCell for all inserted cells.
-

cellsAdded

mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)

Adds the specified cells to the given parent.  This method fires mxEvent.CELLS_ADDED while the transaction is in progress.

+

cellsAdded

mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)

Adds the specified cells to the given parent.  This method fires mxEvent.CELLS_ADDED while the transaction is in progress.

-

removeCells

mxGraph.prototype.removeCells = function(cells,
includeEdges)

Removes the given cells from the graph including all connected edges if includeEdges is true.  The change is carried out using cellsRemoved.  This method fires mxEvent.REMOVE_CELLS while the transaction is in progress.  The removed cells are returned as an array.

Parameters

cellsArray of mxCells to remove.  If null is specified then the selection cells which are deletable are used.
includeEdgesOptional boolean which specifies if all connected edges should be removed as well.  Default is true.
+

removeCells

mxGraph.prototype.removeCells = function(cells,
includeEdges)

Removes the given cells from the graph including all connected edges if includeEdges is true.  The change is carried out using cellsRemoved.  This method fires mxEvent.REMOVE_CELLS while the transaction is in progress.  The removed cells are returned as an array.

Parameters

cellsArray of mxCells to remove.  If null is specified then the selection cells which are deletable are used.
includeEdgesOptional boolean which specifies if all connected edges should be removed as well.  Default is true.
-

cellsRemoved

mxGraph.prototype.cellsRemoved = function(cells)

Removes the given cells from the model.  This method fires mxEvent.CELLS_REMOVED while the transaction is in progress.

Parameters

cellsArray of mxCells to remove.
+

cellsRemoved

mxGraph.prototype.cellsRemoved = function(cells)

Removes the given cells from the model.  This method fires mxEvent.CELLS_REMOVED while the transaction is in progress.

Parameters

cellsArray of mxCells to remove.
-

splitEdge

mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)

Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.  This method fires mxEvent.SPLIT_EDGE while the transaction is in progress.  Returns the new edge that was inserted.

Parameters

edgemxCell that represents the edge to be splitted.
cellsmxCells that represents the cells to insert into the edge.
newEdgemxCell that represents the edge to be inserted.
dxOptional integer that specifies the vector to move the cells.
dyOptional integer that specifies the vector to move the cells.
+

splitEdge

mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)

Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.  This method fires mxEvent.SPLIT_EDGE while the transaction is in progress.  Returns the new edge that was inserted.

Parameters

edgemxCell that represents the edge to be splitted.
cellsmxCells that represents the cells to insert into the edge.
newEdgemxCell that represents the edge to be inserted.
dxOptional integer that specifies the vector to move the cells.
dyOptional integer that specifies the vector to move the cells.

Cell visibility

-

toggleCells

mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)

Sets the visible state of the specified cells and all connected edges if includeEdges is true.  The change is carried out using cellsToggled.  This method fires mxEvent.TOGGLE_CELLS while the transaction is in progress.  Returns the cells whose visible state was changed.

Parameters

showBoolean that specifies the visible state to be assigned.
cellsArray of mxCells whose visible state should be changed.  If null is specified then the selection cells are used.
includeEdgesOptional boolean indicating if the visible state of all connected edges should be changed as well.  Default is true.
+

toggleCells

mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)

Sets the visible state of the specified cells and all connected edges if includeEdges is true.  The change is carried out using cellsToggled.  This method fires mxEvent.TOGGLE_CELLS while the transaction is in progress.  Returns the cells whose visible state was changed.

Parameters

showBoolean that specifies the visible state to be assigned.
cellsArray of mxCells whose visible state should be changed.  If null is specified then the selection cells are used.
includeEdgesOptional boolean indicating if the visible state of all connected edges should be changed as well.  Default is true.
-

cellsToggled

mxGraph.prototype.cellsToggled = function(cells,
show)

Sets the visible state of the specified cells.

Parameters

cellsArray of mxCells whose visible state should be changed.
showBoolean that specifies the visible state to be assigned.
+

cellsToggled

mxGraph.prototype.cellsToggled = function(cells,
show)

Sets the visible state of the specified cells.

Parameters

cellsArray of mxCells whose visible state should be changed.
showBoolean that specifies the visible state to be assigned.

Folding

-

foldCells

mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)

Sets the collapsed state of the specified cells and all descendants if recurse is true.  The change is carried out using cellsFolded.  This method fires mxEvent.FOLD_CELLS while the transaction is in progress.  Returns the cells whose collapsed state was changed.

Parameters

collapsedBoolean indicating the collapsed state to be assigned.
recurseOptional boolean indicating if the collapsed state of all descendants should be set.  Default is false.
cellsArray of mxCells whose collapsed state should be set.  If null is specified then the foldable selection cells are used.
checkFoldableOptional boolean indicating of isCellFoldable should be checked.  Default is false.
+

foldCells

mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)

Sets the collapsed state of the specified cells and all descendants if recurse is true.  The change is carried out using cellsFolded.  This method fires mxEvent.FOLD_CELLS while the transaction is in progress.  Returns the cells whose collapsed state was changed.

Parameters

collapsedBoolean indicating the collapsed state to be assigned.
recurseOptional boolean indicating if the collapsed state of all descendants should be set.  Default is false.
cellsArray of mxCells whose collapsed state should be set.  If null is specified then the foldable selection cells are used.
checkFoldableOptional boolean indicating of isCellFoldable should be checked.  Default is false.
-

cellsFolded

mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)

Sets the collapsed state of the specified cells.  This method fires mxEvent.CELLS_FOLDED while the transaction is in progress.  Returns the cells whose collapsed state was changed.

Parameters

cellsArray of mxCells whose collapsed state should be set.
collapsedBoolean indicating the collapsed state to be assigned.
recurseBoolean indicating if the collapsed state of all descendants should be set.
checkFoldableOptional boolean indicating of isCellFoldable should be checked.  Default is false.
+

cellsFolded

mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)

Sets the collapsed state of the specified cells.  This method fires mxEvent.CELLS_FOLDED while the transaction is in progress.  Returns the cells whose collapsed state was changed.

Parameters

cellsArray of mxCells whose collapsed state should be set.
collapsedBoolean indicating the collapsed state to be assigned.
recurseBoolean indicating if the collapsed state of all descendants should be set.
checkFoldableOptional boolean indicating of isCellFoldable should be checked.  Default is false.
-

swapBounds

mxGraph.prototype.swapBounds = function(cell,
willCollapse)

Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.

Parameters

cellmxCell for which the bounds should be swapped.
willCollapseBoolean indicating if the cell is going to be collapsed.
+

swapBounds

mxGraph.prototype.swapBounds = function(cell,
willCollapse)

Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.

Parameters

cellmxCell for which the bounds should be swapped.
willCollapseBoolean indicating if the cell is going to be collapsed.
-

updateAlternateBounds

mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)

Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.  If no alternate bounds are defined in the geometry and collapseToPreferredSize is true, then the preferred size is used for the alternate bounds.  The top, left corner is always kept at the same location.

Parameters

cellmxCell for which the geometry is being udpated.
gmxGeometry for which the alternate bounds should be updated.
willCollapseBoolean indicating if the cell is going to be collapsed.
+

updateAlternateBounds

mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)

Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.  If no alternate bounds are defined in the geometry and collapseToPreferredSize is true, then the preferred size is used for the alternate bounds.  The top, left corner is always kept at the same location.

Parameters

cellmxCell for which the geometry is being udpated.
gmxGeometry for which the alternate bounds should be updated.
willCollapseBoolean indicating if the cell is going to be collapsed.

addAllEdges

mxGraph.prototype.addAllEdges = function(cells)

Returns an array with the given cells and all edges that are connected to a cell or one of its descendants.

@@ -574,63 +576,63 @@ graph.insertVertex(parent, null,

Cell sizing

-

updateCellSize

mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)

Updates the size of the given cell in the model using cellSizeUpdated.  This method fires mxEvent.UPDATE_CELL_SIZE while the transaction is in progress.  Returns the cell whose size was updated.

Parameters

cellmxCell whose size should be updated.
+

updateCellSize

mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)

Updates the size of the given cell in the model using cellSizeUpdated.  This method fires mxEvent.UPDATE_CELL_SIZE while the transaction is in progress.  Returns the cell whose size was updated.

Parameters

cellmxCell whose size should be updated.
-

cellSizeUpdated

mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)

Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.

Parameters

cellmxCell for which the size should be changed.
+

cellSizeUpdated

mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)

Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.

Parameters

cellmxCell for which the size should be changed.
-

getPreferredSizeForCell

mxGraph.prototype.getPreferredSizeForCell = function(cell)

Returns the preferred width and height of the given mxCell as an mxRectangle.

Parameters

cellmxCell for which the preferred size should be returned.
+

getPreferredSizeForCell

mxGraph.prototype.getPreferredSizeForCell = function(cell)

Returns the preferred width and height of the given mxCell as an mxRectangle.

Parameters

cellmxCell for which the preferred size should be returned.
-

handleGesture

mxGraph.prototype.handleGesture = function(state,
evt)

Invokes if a gesture event has been detected on a cell state.

Parameters

statemxCellState which was pinched.
evtObject that represents the gesture event.
+

handleGesture

mxGraph.prototype.handleGesture = function(state,
evt)

Invokes if a gesture event has been detected on a cell state.

Parameters

statemxCellState which was pinched.
evtObject that represents the gesture event.
-

resizeCell

mxGraph.prototype.resizeCell = function(cell,
bounds)

Sets the bounds of the given cell using resizeCells.  Returns the cell which was passed to the function.

Parameters

cellmxCell whose bounds should be changed.
boundsmxRectangle that represents the new bounds.
+

resizeCell

mxGraph.prototype.resizeCell = function(cell,
bounds)

Sets the bounds of the given cell using resizeCells.  Returns the cell which was passed to the function.

Parameters

cellmxCell whose bounds should be changed.
boundsmxRectangle that represents the new bounds.
-

resizeCells

mxGraph.prototype.resizeCells = function(cells,
bounds)

Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.  Returns the cells which have been passed to the function.

Parameters

cellsArray of mxCells whose bounds should be changed.
boundsArray of mxRectangles that represent the new bounds.
+

resizeCells

mxGraph.prototype.resizeCells = function(cells,
bounds)

Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.  Returns the cells which have been passed to the function.

Parameters

cellsArray of mxCells whose bounds should be changed.
boundsArray of mxRectangles that represent the new bounds.
-

cellsResized

mxGraph.prototype.cellsResized = function(cells,
bounds)

Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.  If extendParents is true, then the parent is extended if a child size is changed so that it overlaps with the parent.

Parameters

cellsArray of mxCells whose bounds should be changed.
boundsArray of mxRectangles that represent the new bounds.
+

cellsResized

mxGraph.prototype.cellsResized = function(cells,
bounds)

Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.  If extendParents is true, then the parent is extended if a child size is changed so that it overlaps with the parent.

Parameters

cellsArray of mxCells whose bounds should be changed.
boundsArray of mxRectangles that represent the new bounds.
-

extendParent

mxGraph.prototype.extendParent = function(cell)

Resizes the parents recursively so that they contain the complete area of the resized child cell.

Parameters

cellmxCell that has been resized.
+

extendParent

mxGraph.prototype.extendParent = function(cell)

Resizes the parents recursively so that they contain the complete area of the resized child cell.

Parameters

cellmxCell that has been resized.

Cell moving

importCells

mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)

Clones and inserts the given cells into the graph using the move method and returns the inserted cells.  This shortcut is used if cells are inserted via datatransfer.

-

moveCells

mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)

Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.  The evt is the mouse event as the mouse was released.  The change is carried out using cellsMoved.  This method fires mxEvent.MOVE_CELLS while the transaction is in progress.  Returns the cells that were moved.

Use the following code to move all cells in the graph.

graph.moveCells(graph.getChildCells(null, true, true), 10, 10);

Parameters

cellsArray of mxCells to be moved, cloned or added to the target.
dxInteger that specifies the x-coordinate of the vector.  Default is 0.
dyInteger that specifies the y-coordinate of the vector.  Default is 0.
cloneBoolean indicating if the cells should be cloned.  Default is false.
targetmxCell that represents the new parent of the cells.
evtMouseevent that triggered the invocation.
+

moveCells

mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)

Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.  The evt is the mouse event as the mouse was released.  The change is carried out using cellsMoved.  This method fires mxEvent.MOVE_CELLS while the transaction is in progress.  Returns the cells that were moved.

Use the following code to move all cells in the graph.

graph.moveCells(graph.getChildCells(null, true, true), 10, 10);

Parameters

cellsArray of mxCells to be moved, cloned or added to the target.
dxInteger that specifies the x-coordinate of the vector.  Default is 0.
dyInteger that specifies the y-coordinate of the vector.  Default is 0.
cloneBoolean indicating if the cells should be cloned.  Default is false.
targetmxCell that represents the new parent of the cells.
evtMouseevent that triggered the invocation.
-

cellsMoved

mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)

Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.  This method fires mxEvent.CELLS_MOVED while the transaction is in progress.

+

cellsMoved

mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)

Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.  This method fires mxEvent.CELLS_MOVED while the transaction is in progress.

translateCell

mxGraph.prototype.translateCell = function(cell,
dx,
dy)

Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.

-

getCellContainmentArea

mxGraph.prototype.getCellContainmentArea = function(cell)

Returns the mxRectangle inside which a cell is to be kept.

Parameters

cellmxCell for which the area should be returned.
+

getCellContainmentArea

mxGraph.prototype.getCellContainmentArea = function(cell)

Returns the mxRectangle inside which a cell is to be kept.

Parameters

cellmxCell for which the area should be returned.
-

getMaximumGraphBounds

mxGraph.prototype.getMaximumGraphBounds = function()

Returns the bounds inside which the diagram should be kept as an mxRectangle.

+

getMaximumGraphBounds

mxGraph.prototype.getMaximumGraphBounds = function()

Returns the bounds inside which the diagram should be kept as an mxRectangle.

-

constrainChild

mxGraph.prototype.constrainChild = function(cell)

Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.  This modifies the cell’s geometry in-place and does not clone it.

Parameters

cellsmxCell which should be constrained.
+

constrainChild

mxGraph.prototype.constrainChild = function(cell)

Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.  This modifies the cell’s geometry in-place and does not clone it.

Parameters

cellsmxCell which should be constrained.
-

resetEdges

mxGraph.prototype.resetEdges = function(cells)

Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.

Parameters

cellsArray of mxCells for which the connected edges should be reset.
+

resetEdges

mxGraph.prototype.resetEdges = function(cells)

Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.

Parameters

cellsArray of mxCells for which the connected edges should be reset.
-

resetEdge

mxGraph.prototype.resetEdge = function(edge)

Resets the control points of the given edge.

Parameters

edgemxCell whose points should be reset.
+

resetEdge

mxGraph.prototype.resetEdge = function(edge)

Resets the control points of the given edge.

Parameters

edgemxCell whose points should be reset.

Cell connecting and connection constraints

-

getAllConnectionConstraints

mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)

Returns an array of all mxConnectionConstraints for the given terminal.  If the shape of the given terminal is a mxStencilShape then the constraints of the corresponding mxStencil are returned.

Parameters

terminalmxCellState that represents the terminal.
sourceBoolean that specifies if the terminal is the source or target.
+

getAllConnectionConstraints

mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)

Returns an array of all mxConnectionConstraints for the given terminal.  If the shape of the given terminal is a mxStencilShape then the constraints of the corresponding mxStencil are returned.

Parameters

terminalmxCellState that represents the terminal.
sourceBoolean that specifies if the terminal is the source or target.
-

getConnectionConstraint

mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)

Returns an mxConnectionConstraint that describes the given connection point.  This result can then be passed to getConnectionPoint.

Parameters

edgemxCellState that represents the edge.
terminalmxCellState that represents the terminal.
sourceBoolean indicating if the terminal is the source or target.
+

getConnectionConstraint

mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)

Returns an mxConnectionConstraint that describes the given connection point.  This result can then be passed to getConnectionPoint.

Parameters

edgemxCellState that represents the edge.
terminalmxCellState that represents the terminal.
sourceBoolean indicating if the terminal is the source or target.
-

setConnectionConstraint

mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)

Sets the mxConnectionConstraint that describes the given connection point.  If no constraint is given then nothing is changed.  To remove an existing constraint from the given edge, use an empty constraint instead.

Parameters

edgemxCell that represents the edge.
terminalmxCell that represents the terminal.
sourceBoolean indicating if the terminal is the source or target.
constraintOptional mxConnectionConstraint to be used for this connection.
+

setConnectionConstraint

mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)

Sets the mxConnectionConstraint that describes the given connection point.  If no constraint is given then nothing is changed.  To remove an existing constraint from the given edge, use an empty constraint instead.

Parameters

edgemxCell that represents the edge.
terminalmxCell that represents the terminal.
sourceBoolean indicating if the terminal is the source or target.
constraintOptional mxConnectionConstraint to be used for this connection.
-

getConnectionPoint

mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)

Returns the nearest point in the list of absolute points or the center of the opposite terminal.

Parameters

vertexmxCellState that represents the vertex.
constraintmxConnectionConstraint that represents the connection point constraint as returned by getConnectionConstraint.
+

getConnectionPoint

mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)

Returns the nearest point in the list of absolute points or the center of the opposite terminal.

Parameters

vertexmxCellState that represents the vertex.
constraintmxConnectionConstraint that represents the connection point constraint as returned by getConnectionConstraint.
-

connectCell

mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)

Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.  Returns the updated edge.

Parameters

edgemxCell whose terminal should be updated.
terminalmxCell that represents the new terminal to be used.
sourceBoolean indicating if the new terminal is the source or target.
constraintOptional mxConnectionConstraint to be used for this connection.
+

connectCell

mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)

Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.  Returns the updated edge.

Parameters

edgemxCell whose terminal should be updated.
terminalmxCell that represents the new terminal to be used.
sourceBoolean indicating if the new terminal is the source or target.
constraintOptional mxConnectionConstraint to be used for this connection.
-

cellConnected

mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)

Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.  This method fires mxEvent.CELL_CONNECTED while the transaction is in progress.

Parameters

edgemxCell whose terminal should be updated.
terminalmxCell that represents the new terminal to be used.
sourceBoolean indicating if the new terminal is the source or target.
constraintmxConnectionConstraint to be used for this connection.
+

cellConnected

mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)

Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.  This method fires mxEvent.CELL_CONNECTED while the transaction is in progress.

Parameters

edgemxCell whose terminal should be updated.
terminalmxCell that represents the new terminal to be used.
sourceBoolean indicating if the new terminal is the source or target.
constraintmxConnectionConstraint to be used for this connection.
-

disconnectGraph

mxGraph.prototype.disconnectGraph = function(cells)

Disconnects the given edges from the terminals which are not in the given array.

Parameters

cellsArray of mxCells to be disconnected.
+

disconnectGraph

mxGraph.prototype.disconnectGraph = function(cells)

Disconnects the given edges from the terminals which are not in the given array.

Parameters

cellsArray of mxCells to be disconnected.

Drilldown

-

getCurrentRoot

mxGraph.prototype.getCurrentRoot = function()

Returns the current root of the displayed cell hierarchy.  This is a shortcut to mxGraphView.currentRoot in view.

+

getCurrentRoot

mxGraph.prototype.getCurrentRoot = function()

Returns the current root of the displayed cell hierarchy.  This is a shortcut to mxGraphView.currentRoot in view.

-

getTranslateForRoot

mxGraph.prototype.getTranslateForRoot = function(cell)

Returns the translation to be used if the given cell is the root cell as an mxPoint.  This implementation returns null.

Example

To keep the children at their absolute position while stepping into groups, this function can be overridden as follows.

var offset = new mxPoint(0, 0);
+

getTranslateForRoot

mxGraph.prototype.getTranslateForRoot = function(cell)

Returns the translation to be used if the given cell is the root cell as an mxPoint.  This implementation returns null.

Example

To keep the children at their absolute position while stepping into groups, this function can be overridden as follows.

var offset = new mxPoint(0, 0);
 
 while (cell != null)
 {
@@ -645,32 +647,32 @@ while (cell != null)
   cell = this.model.getParent(cell);
 }
 
-return offset;

Parameters

cellmxCell that represents the root.
+return offset;

Parameters

cellmxCell that represents the root.

isPort

mxGraph.prototype.isPort = function(cell)

Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.  Note that a port should not be movable.  This implementation always returns false.

A typical implementation is the following

graph.isPort = function(cell)
 {
   var geo = this.getCellGeometry(cell);
 
   return (geo != null) ? geo.relative : false;
-};

Parameters

cellmxCell that represents the port.
+};

Parameters

cellmxCell that represents the port.
-

getTerminalForPort

mxGraph.prototype.getTerminalForPort = function(cell,
source)

Returns the terminal to be used for a given port.  This implementation always returns the parent cell.

Parameters

cellmxCell that represents the port.
sourceIf the cell is the source or target port.
+

getTerminalForPort

mxGraph.prototype.getTerminalForPort = function(cell,
source)

Returns the terminal to be used for a given port.  This implementation always returns the parent cell.

Parameters

cellmxCell that represents the port.
sourceIf the cell is the source or target port.
-

getChildOffsetForCell

mxGraph.prototype.getChildOffsetForCell = function(cell)

Returns the offset to be used for the cells inside the given cell.  The root and layer cells may be identified using mxGraphModel.isRoot and mxGraphModel.isLayer.  For all other current roots, the mxGraphView.currentRoot field points to the respective cell, so that the following holds: cell == this.view.currentRoot.  This implementation returns null.

Parameters

cellmxCell whose offset should be returned.
+

getChildOffsetForCell

mxGraph.prototype.getChildOffsetForCell = function(cell)

Returns the offset to be used for the cells inside the given cell.  The root and layer cells may be identified using mxGraphModel.isRoot and mxGraphModel.isLayer.  For all other current roots, the mxGraphView.currentRoot field points to the respective cell, so that the following holds: cell == this.view.currentRoot.  This implementation returns null.

Parameters

cellmxCell whose offset should be returned.
-

enterGroup

mxGraph.prototype.enterGroup = function(cell)

Uses the given cell as the root of the displayed cell hierarchy.  If no cell is specified then the selection cell is used.  The cell is only used if isValidRoot returns true.

Parameters

cellOptional mxCell to be used as the new root.  Default is the selection cell.
+

enterGroup

mxGraph.prototype.enterGroup = function(cell)

Uses the given cell as the root of the displayed cell hierarchy.  If no cell is specified then the selection cell is used.  The cell is only used if isValidRoot returns true.

Parameters

cellOptional mxCell to be used as the new root.  Default is the selection cell.

exitGroup

mxGraph.prototype.exitGroup = function()

Changes the current root to the next valid root in the displayed cell hierarchy.

home

mxGraph.prototype.home = function()

Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.

-

isValidRoot

mxGraph.prototype.isValidRoot = function(cell)

Returns true if the given cell is a valid root for the cell display hierarchy.  This implementation returns true for all non-null values.

Parameters

cellmxCell which should be checked as a possible root.
+

isValidRoot

mxGraph.prototype.isValidRoot = function(cell)

Returns true if the given cell is a valid root for the cell display hierarchy.  This implementation returns true for all non-null values.

Parameters

cellmxCell which should be checked as a possible root.

Graph display

-

getGraphBounds

mxGraph.prototype.getGraphBounds = function()

Returns the bounds of the visible graph.  Shortcut to mxGraphView.getGraphBounds.  See also: getBoundingBoxFromGeometry.

+

getGraphBounds

mxGraph.prototype.getGraphBounds = function()

Returns the bounds of the visible graph.  Shortcut to mxGraphView.getGraphBounds.  See also: getBoundingBoxFromGeometry.

-

getCellBounds

mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)

Returns the scaled, translated bounds for the given cell.  See mxGraphView.getBounds for arrays.

Parameters

cellmxCell whose bounds should be returned.
includeEdgeOptional boolean that specifies if the bounds of the connected edges should be included.  Default is false.
includeDescendantsOptional boolean that specifies if the bounds of all descendants should be included.  Default is false.
+

getCellBounds

mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)

Returns the scaled, translated bounds for the given cell.  See mxGraphView.getBounds for arrays.

Parameters

cellmxCell whose bounds should be returned.
includeEdgeOptional boolean that specifies if the bounds of the connected edges should be included.  Default is false.
includeDescendantsOptional boolean that specifies if the bounds of all descendants should be included.  Default is false.

getBoundingBoxFromGeometry

mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)

Returns the bounding box for the geometries of the vertices in the given array of cells.  This can be used to find the graph bounds during a layout operation (ie. before the last endUpdate) as follows:

var cells = graph.getChildCells(graph.getDefaultParent(), true, true);
 var bounds = graph.getBoundingBoxFromGeometry(cells, true);

This can then be used to move cells to the origin

if (bounds.x < 0 || bounds.y < 0)
@@ -679,61 +681,61 @@ var bounds = graph.getBoundingBoxFromGeometry(cells, true);

Or to translate the graph view

if (bounds.x < 0 || bounds.y < 0)
 {
   graph.view.setTranslate(-Math.min(bounds.x, 0), -Math.min(bounds.y, 0));
-}

Parameters

cellsArray of mxCells whose bounds should be returned.
includeEdgesSpecifies if edge bounds should be included by computing the bounding box for all points its geometry.  Default is false.
+}

Parameters

cellsArray of mxCells whose bounds should be returned.
includeEdgesSpecifies if edge bounds should be included by computing the bounding box for all points its geometry.  Default is false.
-

refresh

mxGraph.prototype.refresh = function(cell)

Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.  This fires a refresh event as the last step.

Parameters

cellOptional mxCell for which the cell states should be cleared.
+

refresh

mxGraph.prototype.refresh = function(cell)

Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.  This fires a refresh event as the last step.

Parameters

cellOptional mxCell for which the cell states should be cleared.
-

snap

mxGraph.prototype.snap = function(value)

Snaps the given numeric value to the grid if gridEnabled is true.

Parameters

valueNumeric value to be snapped to the grid.
+

snap

mxGraph.prototype.snap = function(value)

Snaps the given numeric value to the grid if gridEnabled is true.

Parameters

valueNumeric value to be snapped to the grid.
-

panGraph

mxGraph.prototype.panGraph = function(dx,
dy)

Shifts the graph display by the given amount.  This is used to preview panning operations, use mxGraphView.setTranslate to set a persistent translation of the view.  Fires mxEvent.PAN.

Parameters

dxAmount to shift the graph along the x-axis.
dyAmount to shift the graph along the y-axis.
+

panGraph

mxGraph.prototype.panGraph = function(dx,
dy)

Shifts the graph display by the given amount.  This is used to preview panning operations, use mxGraphView.setTranslate to set a persistent translation of the view.  Fires mxEvent.PAN.

Parameters

dxAmount to shift the graph along the x-axis.
dyAmount to shift the graph along the y-axis.
-

zoomIn

mxGraph.prototype.zoomIn = function()

Zooms into the graph by zoomFactor.

+

zoomIn

mxGraph.prototype.zoomIn = function()

Zooms into the graph by zoomFactor.

-

zoomOut

mxGraph.prototype.zoomOut = function()

Zooms out of the graph by zoomFactor.

+

zoomOut

mxGraph.prototype.zoomOut = function()

Zooms out of the graph by zoomFactor.

zoomActual

mxGraph.prototype.zoomActual = function()

Resets the zoom and panning in the view.

-

zoomTo

mxGraph.prototype.zoomTo = function(scale,
center)

Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.

+

zoomTo

mxGraph.prototype.zoomTo = function(scale,
center)

Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.

-

zoom

mxGraph.prototype.zoom = function(factor,
center)

Zooms the graph using the given factor.  Center is an optional boolean argument that keeps the graph scrolled to the center.  If the center argument is omitted, then centerZoom will be used as its value.

+

zoom

mxGraph.prototype.zoom = function(factor,
center)

Zooms the graph using the given factor.  Center is an optional boolean argument that keeps the graph scrolled to the center.  If the center argument is omitted, then centerZoom will be used as its value.

-

fit

mxGraph.prototype.fit = function(border,
keepOrigin)

Scales the graph such that the complete diagram fits into <container> and returns the current scale in the view.  To fit an initial graph prior to rendering, set mxGraphView.rendering to false prior to changing the model and execute the following after changing the model.

graph.fit();
+

fit

mxGraph.prototype.fit = function(border,
keepOrigin)

Scales the graph such that the complete diagram fits into <container> and returns the current scale in the view.  To fit an initial graph prior to rendering, set mxGraphView.rendering to false prior to changing the model and execute the following after changing the model.

graph.fit();
 graph.view.rendering = true;
 graph.refresh();

Parameters

borderOptional number that specifies the border.  Default is 0.
keepOriginOptional boolean that specifies if the translate should be changed.  Default is false.
-

scrollCellToVisible

mxGraph.prototype.scrollCellToVisible = function(cell,
center)

Pans the graph so that it shows the given cell.  Optionally the cell may be centered in the container.

To center a given graph if the <container> has no scrollbars, use the following code.

[code] var bounds = graph.getGraphBounds(); graph.view.setTranslate(-bounds.x - (bounds.width - container.clientWidth) / 2, -bounds.y - (bounds.height - container.clientHeight) / 2); [/code]

Parameters

cellmxCell to be made visible.
centerOptional boolean flag.  Default is false.
+

scrollCellToVisible

mxGraph.prototype.scrollCellToVisible = function(cell,
center)

Pans the graph so that it shows the given cell.  Optionally the cell may be centered in the container.

To center a given graph if the <container> has no scrollbars, use the following code.

[code] var bounds = graph.getGraphBounds(); graph.view.setTranslate(-bounds.x - (bounds.width - container.clientWidth) / 2, -bounds.y - (bounds.height - container.clientHeight) / 2); [/code]

Parameters

cellmxCell to be made visible.
centerOptional boolean flag.  Default is false.
-

scrollRectToVisible

mxGraph.prototype.scrollRectToVisible = function(rect)

Pans the graph so that it shows the given rectangle.

Parameters

rectmxRectangle to be made visible.
+

scrollRectToVisible

mxGraph.prototype.scrollRectToVisible = function(rect)

Pans the graph so that it shows the given rectangle.

Parameters

rectmxRectangle to be made visible.
-

getCellGeometry

mxGraph.prototype.getCellGeometry = function(cell)

Returns the mxGeometry for the given cell.  This implementation uses mxGraphModel.getGeometry.  Subclasses can override this to implement specific geometries for cells in only one graph, that is, it can return geometries that depend on the current state of the view.

Parameters

cellmxCell whose geometry should be returned.
+

getCellGeometry

mxGraph.prototype.getCellGeometry = function(cell)

Returns the mxGeometry for the given cell.  This implementation uses mxGraphModel.getGeometry.  Subclasses can override this to implement specific geometries for cells in only one graph, that is, it can return geometries that depend on the current state of the view.

Parameters

cellmxCell whose geometry should be returned.
-

isCellVisible

mxGraph.prototype.isCellVisible = function(cell)

Returns true if the given cell is visible in this graph.  This implementation uses mxGraphModel.isVisible.  Subclassers can override this to implement specific visibility for cells in only one graph, that is, without affecting the visible state of the cell.

When using dynamic filter expressions for cell visibility, then the graph should be revalidated after the filter expression has changed.

Parameters

cellmxCell whose visible state should be returned.
+

isCellVisible

mxGraph.prototype.isCellVisible = function(cell)

Returns true if the given cell is visible in this graph.  This implementation uses mxGraphModel.isVisible.  Subclassers can override this to implement specific visibility for cells in only one graph, that is, without affecting the visible state of the cell.

When using dynamic filter expressions for cell visibility, then the graph should be revalidated after the filter expression has changed.

Parameters

cellmxCell whose visible state should be returned.
-

isCellCollapsed

mxGraph.prototype.isCellCollapsed = function(cell)

Returns true if the given cell is collapsed in this graph.  This implementation uses mxGraphModel.isCollapsed.  Subclassers can override this to implement specific collapsed states for cells in only one graph, that is, without affecting the collapsed state of the cell.

When using dynamic filter expressions for the collapsed state, then the graph should be revalidated after the filter expression has changed.

Parameters

cellmxCell whose collapsed state should be returned.
+

isCellCollapsed

mxGraph.prototype.isCellCollapsed = function(cell)

Returns true if the given cell is collapsed in this graph.  This implementation uses mxGraphModel.isCollapsed.  Subclassers can override this to implement specific collapsed states for cells in only one graph, that is, without affecting the collapsed state of the cell.

When using dynamic filter expressions for the collapsed state, then the graph should be revalidated after the filter expression has changed.

Parameters

cellmxCell whose collapsed state should be returned.
-

isCellConnectable

mxGraph.prototype.isCellConnectable = function(cell)

Returns true if the given cell is connectable in this graph.  This implementation uses mxGraphModel.isConnectable.  Subclassers can override this to implement specific connectable states for cells in only one graph, that is, without affecting the connectable state of the cell in the model.

Parameters

cellmxCell whose connectable state should be returned.
+

isCellConnectable

mxGraph.prototype.isCellConnectable = function(cell)

Returns true if the given cell is connectable in this graph.  This implementation uses mxGraphModel.isConnectable.  Subclassers can override this to implement specific connectable states for cells in only one graph, that is, without affecting the connectable state of the cell in the model.

Parameters

cellmxCell whose connectable state should be returned.
-

isOrthogonal

mxGraph.prototype.isOrthogonal = function(edge)

Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.

Parameters

edgemxCellState that represents the edge.
+

isOrthogonal

mxGraph.prototype.isOrthogonal = function(edge)

Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.

Parameters

edgemxCellState that represents the edge.
-

isLoop

mxGraph.prototype.isLoop = function(state)

Returns true if the given cell state is a loop.

Parameters

statemxCellState that represents a potential loop.
+

isLoop

mxGraph.prototype.isLoop = function(state)

Returns true if the given cell state is a loop.

Parameters

statemxCellState that represents a potential loop.

isCloneEvent

mxGraph.prototype.isCloneEvent = function(evt)

Returns true if the given event is a clone event.  This implementation returns true if control is pressed.

-

isToggleEvent

mxGraph.prototype.isToggleEvent = function(evt)

Returns true if the given event is a toggle event.  This implementation returns true if control is pressed.

+

isToggleEvent

mxGraph.prototype.isToggleEvent = function(evt)

Returns true if the given event is a toggle event.  This implementation returns true if the meta key (Cmd) is pressed on Macs or if control is pressed on any other platform.

isGridEnabledEvent

mxGraph.prototype.isGridEnabledEvent = function(evt)

Returns true if the given mouse event should be aligned to the grid.

isConstrainedEvent

mxGraph.prototype.isConstrainedEvent = function(evt)

Returns true if the given mouse event should be aligned to the grid.

-

isForceMarqueeEvent

mxGraph.prototype.isForceMarqueeEvent = function(evt)

Returns true if the given event forces marquee selection.  This implementation returns true if alt or meta is pressed.

+

isForceMarqueeEvent

mxGraph.prototype.isForceMarqueeEvent = function(evt)

Returns true if the given event forces marquee selection.  This implementation returns true if alt is pressed.

Validation

validationAlert

mxGraph.prototype.validationAlert = function(message)

Displays the given validation error in a dialog.  This implementation uses mxUtils.alert.

-

isEdgeValid

mxGraph.prototype.isEdgeValid = function(edge,
source,
target)

Checks if the return value of getEdgeValidationError for the given arguments is null.

Parameters

edgemxCell that represents the edge to validate.
sourcemxCell that represents the source terminal.
targetmxCell that represents the target terminal.
+

isEdgeValid

mxGraph.prototype.isEdgeValid = function(edge,
source,
target)

Checks if the return value of getEdgeValidationError for the given arguments is null.

Parameters

edgemxCell that represents the edge to validate.
sourcemxCell that represents the source terminal.
targetmxCell that represents the target terminal.
-

getEdgeValidationError

mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)

Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.  A return value of null means the edge is valid, a return value of ‘’ means it’s not valid, but do not display an error message.  Any other (non-empty) string returned from this method is displayed as an error message when trying to connect an edge to a source and target.  This implementation uses the multiplicities, and checks multigraph, allowDanglingEdges and allowLoops to generate validation errors.

For extending this method with specific checks for source/target cells, the method can be extended as follows.  Returning an empty string means the edge is invalid with no error message, a non-null string specifies the error message, and null means the edge is valid.

graph.getEdgeValidationError = function(edge, source, target)
+

getEdgeValidationError

mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)

Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.  A return value of null means the edge is valid, a return value of ‘’ means it’s not valid, but do not display an error message.  Any other (non-empty) string returned from this method is displayed as an error message when trying to connect an edge to a source and target.  This implementation uses the multiplicities, and checks multigraph, allowDanglingEdges and allowLoops to generate validation errors.

For extending this method with specific checks for source/target cells, the method can be extended as follows.  Returning an empty string means the edge is invalid with no error message, a non-null string specifies the error message, and null means the edge is valid.

graph.getEdgeValidationError = function(edge, source, target)
 {
   if (source != null && target != null &&
     this.model.getValue(source) != null &&
@@ -747,30 +749,30 @@ graph.refresh();

Parameters

Parameters

edgemxCell that represents the edge to validate.
sourcemxCell that represents the source terminal.
targetmxCell that represents the target terminal.
+}

Parameters

edgemxCell that represents the edge to validate.
sourcemxCell that represents the source terminal.
targetmxCell that represents the target terminal.
-

validateEdge

mxGraph.prototype.validateEdge = function(edge,
source,
target)

Hook method for subclassers to return an error message for the given edge and terminals.  This implementation returns null.

Parameters

edgemxCell that represents the edge to validate.
sourcemxCell that represents the source terminal.
targetmxCell that represents the target terminal.
+

validateEdge

mxGraph.prototype.validateEdge = function(edge,
source,
target)

Hook method for subclassers to return an error message for the given edge and terminals.  This implementation returns null.

Parameters

edgemxCell that represents the edge to validate.
sourcemxCell that represents the source terminal.
targetmxCell that represents the target terminal.
-

validateGraph

mxGraph.prototype.validateGraph = function(cell,
context)

Validates the graph by validating each descendant of the given cell or the root of the model.  Context is an object that contains the validation state for the complete validation run.  The validation errors are attached to their cells using setCellWarning.  This function returns true if no validation errors exist in the graph.

Paramters

cellOptional mxCell to start the validation recursion.  Default is the graph root.
contextObject that represents the global validation state.
+

validateGraph

mxGraph.prototype.validateGraph = function(cell,
context)

Validates the graph by validating each descendant of the given cell or the root of the model.  Context is an object that contains the validation state for the complete validation run.  The validation errors are attached to their cells using setCellWarning.  This function returns true if no validation errors exist in the graph.

Paramters

cellOptional mxCell to start the validation recursion.  Default is the graph root.
contextObject that represents the global validation state.
-

getCellValidationError

mxGraph.prototype.getCellValidationError = function(cell)

Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.

Parameters

cellmxCell for which the multiplicities should be checked.
+

getCellValidationError

mxGraph.prototype.getCellValidationError = function(cell)

Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.

Parameters

cellmxCell for which the multiplicities should be checked.
-

validateCell

mxGraph.prototype.validateCell = function(cell,
context)

Hook method for subclassers to return an error message for the given cell and validation context.  This implementation returns null.  Any HTML breaks will be converted to linefeeds in the calling method.

Parameters

cellmxCell that represents the cell to validate.
contextObject that represents the global validation state.
+

validateCell

mxGraph.prototype.validateCell = function(cell,
context)

Hook method for subclassers to return an error message for the given cell and validation context.  This implementation returns null.  Any HTML breaks will be converted to linefeeds in the calling method.

Parameters

cellmxCell that represents the cell to validate.
contextObject that represents the global validation state.

Graph appearance

-

getBackgroundImage

mxGraph.prototype.getBackgroundImage = function()

Returns the backgroundImage as an mxImage.

+

getBackgroundImage

mxGraph.prototype.getBackgroundImage = function()

Returns the backgroundImage as an mxImage.

-

setBackgroundImage

mxGraph.prototype.setBackgroundImage = function(image)

Sets the new backgroundImage.

Parameters

imageNew mxImage to be used for the background.
+

setBackgroundImage

mxGraph.prototype.setBackgroundImage = function(image)

Sets the new backgroundImage.

Parameters

imageNew mxImage to be used for the background.
-

getFoldingImage

mxGraph.prototype.getFoldingImage = function(state)

Returns the mxImage used to display the collapsed state of the specified cell state.  This returns null for all edges.

+

getFoldingImage

mxGraph.prototype.getFoldingImage = function(state)

Returns the mxImage used to display the collapsed state of the specified cell state.  This returns null for all edges.

convertValueToString

mxGraph.prototype.convertValueToString = function(cell)

Returns the textual representation for the given cell.  This implementation returns the nodename or string-representation of the user object.

Example

The following returns the label attribute from the cells user object if it is an XML node.

graph.convertValueToString = function(cell)
 {
  return cell.getAttribute('label');
-}

See also: cellLabelChanged.

Parameters

cellmxCell whose textual representation should be returned.
+}

See also: cellLabelChanged.

Parameters

cellmxCell whose textual representation should be returned.
-

getLabel

mxGraph.prototype.getLabel = function(cell)

Returns a string or DOM node that represents the label for the given cell.  This implementation uses convertValueToString if labelsVisible is true.  Otherwise it returns an empty string.

To truncate label to match the size of the cell, the following code can be used.

graph.getLabel = function(cell)
+

getLabel

mxGraph.prototype.getLabel = function(cell)

Returns a string or DOM node that represents the label for the given cell.  This implementation uses convertValueToString if labelsVisible is true.  Otherwise it returns an empty string.

To truncate label to match the size of the cell, the following code can be used.

graph.getLabel = function(cell)
 {
   var label = mxGraph.prototype.getLabel.apply(this, arguments);
 
@@ -797,15 +799,15 @@ graph.refresh();

Parameters

Parameters

cellmxCell whose label should be returned.
+});

Parameters

cellmxCell whose label should be returned.
-

isHtmlLabel

mxGraph.prototype.isHtmlLabel = function(cell)

Returns true if the label must be rendered as HTML markup.  The default implementation returns htmlLabels.

Parameters

cellmxCell whose label should be displayed as HTML markup.
+

isHtmlLabel

mxGraph.prototype.isHtmlLabel = function(cell)

Returns true if the label must be rendered as HTML markup.  The default implementation returns htmlLabels.

Parameters

cellmxCell whose label should be displayed as HTML markup.
-

isHtmlLabels

mxGraph.prototype.isHtmlLabels = function()

Returns htmlLabels.

+

isHtmlLabels

mxGraph.prototype.isHtmlLabels = function()

Returns htmlLabels.

-

setHtmlLabels

mxGraph.prototype.setHtmlLabels = function(value)

Sets htmlLabels.

+

setHtmlLabels

mxGraph.prototype.setHtmlLabels = function(value)

Sets htmlLabels.

-

isWrapping

mxGraph.prototype.isWrapping = function(cell)

This enables wrapping for HTML labels.

Returns true if no white-space CSS style directive should be used for displaying the given cells label.  This implementation returns true if mxConstants.STYLE_WHITE_SPACE in the style of the given cell is ‘wrap’.

This is used as a workaround for IE ignoring the white-space directive of child elements if the directive appears in a parent element.  It should be overridden to return true if a white-space directive is used in the HTML markup that represents the given cells label.  In order for HTML markup to work in labels, isHtmlLabel must also return true for the given cell.

Example

graph.getLabel = function(cell)
+

isWrapping

mxGraph.prototype.isWrapping = function(cell)

This enables wrapping for HTML labels.

Returns true if no white-space CSS style directive should be used for displaying the given cells label.  This implementation returns true if mxConstants.STYLE_WHITE_SPACE in the style of the given cell is ‘wrap’.

This is used as a workaround for IE ignoring the white-space directive of child elements if the directive appears in a parent element.  It should be overridden to return true if a white-space directive is used in the HTML markup that represents the given cells label.  In order for HTML markup to work in labels, isHtmlLabel must also return true for the given cell.

Example

graph.getLabel = function(cell)
 {
   var tmp = mxGraph.prototype.getLabel.apply(this, arguments); // "supercall"
 
@@ -820,337 +822,337 @@ graph.refresh();

Parameters

Makes sure no edge label is wider than 150 pixels, otherwise the content is wrapped.  Note: No width must be specified for wrapped vertex labels as the vertex defines the width in its geometry.

Parameters

statemxCell whose label should be wrapped.
+}

Makes sure no edge label is wider than 150 pixels, otherwise the content is wrapped.  Note: No width must be specified for wrapped vertex labels as the vertex defines the width in its geometry.

Parameters

statemxCell whose label should be wrapped.
-

isLabelClipped

mxGraph.prototype.isLabelClipped = function(cell)

Returns true if the overflow portion of labels should be hidden.  If this returns true then vertex labels will be clipped to the size of the vertices.  This implementation returns true if mxConstants.STYLE_OVERFLOW in the style of the given cell is ‘hidden’.

Parameters

statemxCell whose label should be clipped.
+

isLabelClipped

mxGraph.prototype.isLabelClipped = function(cell)

Returns true if the overflow portion of labels should be hidden.  If this returns true then vertex labels will be clipped to the size of the vertices.  This implementation returns true if mxConstants.STYLE_OVERFLOW in the style of the given cell is ‘hidden’.

Parameters

statemxCell whose label should be clipped.
-

getTooltip

mxGraph.prototype.getTooltip = function(state,
node,
x,
y)

Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.  This implementation checks if the given node is a folding icon or overlay and returns the respective tooltip.  If this does not result in a tooltip, the handler for the cell is retrieved from <selectionCellsHandler> and the optional getTooltipForNode method is called.  If no special tooltip exists here then getTooltipForCell is used with the cell in the given state as the argument to return a tooltip for the given state.

Parameters

statemxCellState whose tooltip should be returned.
nodeDOM node that is currently under the mouse.
xX-coordinate of the mouse.
yY-coordinate of the mouse.
+

getTooltip

mxGraph.prototype.getTooltip = function(state,
node,
x,
y)

Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.  This implementation checks if the given node is a folding icon or overlay and returns the respective tooltip.  If this does not result in a tooltip, the handler for the cell is retrieved from <selectionCellsHandler> and the optional getTooltipForNode method is called.  If no special tooltip exists here then getTooltipForCell is used with the cell in the given state as the argument to return a tooltip for the given state.

Parameters

statemxCellState whose tooltip should be returned.
nodeDOM node that is currently under the mouse.
xX-coordinate of the mouse.
yY-coordinate of the mouse.
-

getTooltipForCell

mxGraph.prototype.getTooltipForCell = function(cell)

Returns the string or DOM node to be used as the tooltip for the given cell.  This implementation uses the cells getTooltip function if it exists, or else it returns convertValueToString for the cell.

Example

graph.getTooltipForCell = function(cell)
+

getTooltipForCell

mxGraph.prototype.getTooltipForCell = function(cell)

Returns the string or DOM node to be used as the tooltip for the given cell.  This implementation uses the cells getTooltip function if it exists, or else it returns convertValueToString for the cell.

Example

graph.getTooltipForCell = function(cell)
 {
   return 'Hello, World!';
-}

Replaces all tooltips with the string Hello, World!

Parameters

cellmxCell whose tooltip should be returned.
+}

Replaces all tooltips with the string Hello, World!

Parameters

cellmxCell whose tooltip should be returned.
-

getCursorForCell

mxGraph.prototype.getCursorForCell = function(cell)

Returns the cursor value to be used for the CSS of the shape for the given cell.  This implementation returns null.

Parameters

cellmxCell whose cursor should be returned.
+

getCursorForCell

mxGraph.prototype.getCursorForCell = function(cell)

Returns the cursor value to be used for the CSS of the shape for the given cell.  This implementation returns null.

Parameters

cellmxCell whose cursor should be returned.
-

getStartSize

mxGraph.prototype.getStartSize = function(swimlane)

Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.  The return value is an mxRectangle with either width or height set as appropriate.

Parameters

swimlanemxCell whose start size should be returned.
+

getStartSize

mxGraph.prototype.getStartSize = function(swimlane)

Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.  The return value is an mxRectangle with either width or height set as appropriate.

Parameters

swimlanemxCell whose start size should be returned.
-

getImage

mxGraph.prototype.getImage = function(state)

Returns the image URL for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_IMAGE in the cell style.

Parameters

statemxCellState whose image URL should be returned.
+

getImage

mxGraph.prototype.getImage = function(state)

Returns the image URL for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_IMAGE in the cell style.

Parameters

statemxCellState whose image URL should be returned.
-

getVerticalAlign

mxGraph.prototype.getVerticalAlign = function(state)

Returns the vertical alignment for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_VERTICAL_ALIGN in the cell style.

Parameters

statemxCellState whose vertical alignment should be returned.
+

getVerticalAlign

mxGraph.prototype.getVerticalAlign = function(state)

Returns the vertical alignment for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_VERTICAL_ALIGN in the cell style.

Parameters

statemxCellState whose vertical alignment should be returned.
-

getIndicatorColor

mxGraph.prototype.getIndicatorColor = function(state)

Returns the indicator color for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_COLOR in the cell style.

Parameters

statemxCellState whose indicator color should be returned.
+

getIndicatorColor

mxGraph.prototype.getIndicatorColor = function(state)

Returns the indicator color for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_COLOR in the cell style.

Parameters

statemxCellState whose indicator color should be returned.
-

getIndicatorGradientColor

mxGraph.prototype.getIndicatorGradientColor = function(state)

Returns the indicator gradient color for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_GRADIENTCOLOR in the cell style.

Parameters

statemxCellState whose indicator gradient color should be returned.
+

getIndicatorGradientColor

mxGraph.prototype.getIndicatorGradientColor = function(state)

Returns the indicator gradient color for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_GRADIENTCOLOR in the cell style.

Parameters

statemxCellState whose indicator gradient color should be returned.
-

getIndicatorShape

mxGraph.prototype.getIndicatorShape = function(state)

Returns the indicator shape for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_SHAPE in the cell style.

Parameters

statemxCellState whose indicator shape should be returned.
+

getIndicatorShape

mxGraph.prototype.getIndicatorShape = function(state)

Returns the indicator shape for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_SHAPE in the cell style.

Parameters

statemxCellState whose indicator shape should be returned.
-

getIndicatorImage

mxGraph.prototype.getIndicatorImage = function(state)

Returns the indicator image for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_IMAGE in the cell style.

Parameters

statemxCellState whose indicator image should be returned.
+

getIndicatorImage

mxGraph.prototype.getIndicatorImage = function(state)

Returns the indicator image for the given cell state.  This implementation returns the value stored under mxConstants.STYLE_INDICATOR_IMAGE in the cell style.

Parameters

statemxCellState whose indicator image should be returned.
-

getBorder

mxGraph.prototype.getBorder = function()

Returns the value of border.

+

getBorder

mxGraph.prototype.getBorder = function()

Returns the value of border.

-

setBorder

mxGraph.prototype.setBorder = function(value)

Sets the value of border.

Parameters

valuePositive integer that represents the border to be used.
+

setBorder

mxGraph.prototype.setBorder = function(value)

Sets the value of border.

Parameters

valuePositive integer that represents the border to be used.
-

isSwimlane

mxGraph.prototype.isSwimlane = function (cell)

Returns true if the given cell is a swimlane in the graph.  A swimlane is a container cell with some specific behaviour.  This implementation checks if the shape associated with the given cell is a mxSwimlane.

Parameters

cellmxCell to be checked.
+

isSwimlane

mxGraph.prototype.isSwimlane = function (cell)

Returns true if the given cell is a swimlane in the graph.  A swimlane is a container cell with some specific behaviour.  This implementation checks if the shape associated with the given cell is a mxSwimlane.

Parameters

cellmxCell to be checked.

Graph behaviour

-

isResizeContainer

mxGraph.prototype.isResizeContainer = function()

Returns resizeContainer.

+

isResizeContainer

mxGraph.prototype.isResizeContainer = function()

Returns resizeContainer.

-

setResizeContainer

mxGraph.prototype.setResizeContainer = function(value)

Sets resizeContainer.

Parameters

valueBoolean indicating if the container should be resized.
+

setResizeContainer

mxGraph.prototype.setResizeContainer = function(value)

Sets resizeContainer.

Parameters

valueBoolean indicating if the container should be resized.
-

isEnabled

mxGraph.prototype.isEnabled = function()

Returns true if the graph is enabled.

+

isEnabled

mxGraph.prototype.isEnabled = function()

Returns true if the graph is enabled.

-

setEnabled

mxGraph.prototype.setEnabled = function(value)

Specifies if the graph should allow any interactions.  This implementation updates enabled.

Parameters

valueBoolean indicating if the graph should be enabled.
+

setEnabled

mxGraph.prototype.setEnabled = function(value)

Specifies if the graph should allow any interactions.  This implementation updates enabled.

Parameters

valueBoolean indicating if the graph should be enabled.
-

isEscapeEnabled

mxGraph.prototype.isEscapeEnabled = function()

Returns escapeEnabled.

+

isEscapeEnabled

mxGraph.prototype.isEscapeEnabled = function()

Returns escapeEnabled.

-

setEscapeEnabled

mxGraph.prototype.setEscapeEnabled = function(value)

Sets escapeEnabled.

Parameters

enabledBoolean indicating if escape should be enabled.
+

setEscapeEnabled

mxGraph.prototype.setEscapeEnabled = function(value)

Sets escapeEnabled.

Parameters

enabledBoolean indicating if escape should be enabled.
-

isInvokesStopCellEditing

mxGraph.prototype.isInvokesStopCellEditing = function()

Returns invokesStopCellEditing.

+

isInvokesStopCellEditing

mxGraph.prototype.isInvokesStopCellEditing = function()

Returns invokesStopCellEditing.

-

setInvokesStopCellEditing

mxGraph.prototype.setInvokesStopCellEditing = function(value)

Sets invokesStopCellEditing.

+

setInvokesStopCellEditing

mxGraph.prototype.setInvokesStopCellEditing = function(value)

Sets invokesStopCellEditing.

-

isEnterStopsCellEditing

mxGraph.prototype.isEnterStopsCellEditing = function()

Returns enterStopsCellEditing.

+

isEnterStopsCellEditing

mxGraph.prototype.isEnterStopsCellEditing = function()

Returns enterStopsCellEditing.

-

setEnterStopsCellEditing

mxGraph.prototype.setEnterStopsCellEditing = function(value)

Sets enterStopsCellEditing.

+

setEnterStopsCellEditing

mxGraph.prototype.setEnterStopsCellEditing = function(value)

Sets enterStopsCellEditing.

-

isCellLocked

mxGraph.prototype.isCellLocked = function(cell)

Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.  This implementation returns true for all vertices with a relative geometry if <locked> is false.

Parameters

cellmxCell whose locked state should be returned.
+

isCellLocked

mxGraph.prototype.isCellLocked = function(cell)

Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.  This implementation returns true for all vertices with a relative geometry if <locked> is false.

Parameters

cellmxCell whose locked state should be returned.
-

isCellsLocked

mxGraph.prototype.isCellsLocked = function()

Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.  This implementation returns true for all vertices with a relative geometry if <locked> is false.

Parameters

cellmxCell whose locked state should be returned.
+

isCellsLocked

mxGraph.prototype.isCellsLocked = function()

Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.  This implementation returns true for all vertices with a relative geometry if <locked> is false.

Parameters

cellmxCell whose locked state should be returned.
-

setLocked

Sets if any cell may be moved, sized, bended, disconnected, edited or selected.

Parameters

valueBoolean that defines the new value for cellsLocked.
+

setLocked

Sets if any cell may be moved, sized, bended, disconnected, edited or selected.

Parameters

valueBoolean that defines the new value for cellsLocked.

getCloneableCells

mxGraph.prototype.getCloneableCells = function(cells)

Returns the cells which may be exported in the given array of cells.

-

isCellCloneable

mxGraph.prototype.isCellCloneable = function(cell)

Returns true if the given cell is cloneable.  This implementation returns isCellsCloneable for all cells unless a cell style specifies mxConstants.STYLE_CLONEABLE to be 0.

Parameters

cellOptional mxCell whose cloneable state should be returned.
+

isCellCloneable

mxGraph.prototype.isCellCloneable = function(cell)

Returns true if the given cell is cloneable.  This implementation returns isCellsCloneable for all cells unless a cell style specifies mxConstants.STYLE_CLONEABLE to be 0.

Parameters

cellOptional mxCell whose cloneable state should be returned.
-

isCellsCloneable

mxGraph.prototype.isCellsCloneable = function()

Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.

+

isCellsCloneable

mxGraph.prototype.isCellsCloneable = function()

Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.

-

setCellsCloneable

mxGraph.prototype.setCellsCloneable = function(value)

Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.  This implementation updates cellsCloneable.

Parameters

valueBoolean indicating if the graph should be cloneable.
+

setCellsCloneable

mxGraph.prototype.setCellsCloneable = function(value)

Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.  This implementation updates cellsCloneable.

Parameters

valueBoolean indicating if the graph should be cloneable.

getExportableCells

mxGraph.prototype.getExportableCells = function(cells)

Returns the cells which may be exported in the given array of cells.

-

canExportCell

mxGraph.prototype.canExportCell = function(cell)

Returns true if the given cell may be exported to the clipboard.  This implementation returns exportEnabled for all cells.

Parameters

cellmxCell that represents the cell to be exported.
+

canExportCell

mxGraph.prototype.canExportCell = function(cell)

Returns true if the given cell may be exported to the clipboard.  This implementation returns exportEnabled for all cells.

Parameters

cellmxCell that represents the cell to be exported.

getImportableCells

mxGraph.prototype.getImportableCells = function(cells)

Returns the cells which may be imported in the given array of cells.

-

canImportCell

mxGraph.prototype.canImportCell = function(cell)

Returns true if the given cell may be imported from the clipboard.  This implementation returns importEnabled for all cells.

Parameters

cellmxCell that represents the cell to be imported.
+

canImportCell

mxGraph.prototype.canImportCell = function(cell)

Returns true if the given cell may be imported from the clipboard.  This implementation returns importEnabled for all cells.

Parameters

cellmxCell that represents the cell to be imported.
-

isCellSelectable

mxGraph.prototype.isCellSelectable = function(cell)

Returns true if the given cell is selectable.  This implementation returns cellsSelectable.

To add a new style for making cells (un)selectable, use the following code.

mxGraph.prototype.isCellSelectable = function(cell)
+

isCellSelectable

mxGraph.prototype.isCellSelectable = function(cell)

Returns true if the given cell is selectable.  This implementation returns cellsSelectable.

To add a new style for making cells (un)selectable, use the following code.

mxGraph.prototype.isCellSelectable = function(cell)
 {
   var state = this.view.getState(cell);
   var style = (state != null) ? state.style : this.getCellStyle(cell);
 
   return this.isCellsSelectable() && !this.isCellLocked(cell) && style['selectable'] != 0;
-};

You can then use the new style as shown in this example.

graph.insertVertex(parent, null, 'Hello,', 20, 20, 80, 30, 'selectable=0');

Parameters

cellmxCell whose selectable state should be returned.
+};

You can then use the new style as shown in this example.

graph.insertVertex(parent, null, 'Hello,', 20, 20, 80, 30, 'selectable=0');

Parameters

cellmxCell whose selectable state should be returned.
-

isCellsSelectable

mxGraph.prototype.isCellsSelectable = function()

Returns cellsSelectable.

+

isCellsSelectable

mxGraph.prototype.isCellsSelectable = function()

Returns cellsSelectable.

-

setCellsSelectable

mxGraph.prototype.setCellsSelectable = function(value)

Sets cellsSelectable.

+

setCellsSelectable

mxGraph.prototype.setCellsSelectable = function(value)

Sets cellsSelectable.

getDeletableCells

mxGraph.prototype.getDeletableCells = function(cells)

Returns the cells which may be exported in the given array of cells.

-

isCellDeletable

mxGraph.prototype.isCellDeletable = function(cell)

Returns true if the given cell is moveable.  This returns cellsDeletable for all given cells if a cells style does not specify mxConstants.STYLE_DELETABLE to be 0.

Parameters

cellmxCell whose deletable state should be returned.
+

isCellDeletable

mxGraph.prototype.isCellDeletable = function(cell)

Returns true if the given cell is moveable.  This returns cellsDeletable for all given cells if a cells style does not specify mxConstants.STYLE_DELETABLE to be 0.

Parameters

cellmxCell whose deletable state should be returned.
-

isCellsDeletable

mxGraph.prototype.isCellsDeletable = function()

Returns cellsDeletable.

+

isCellsDeletable

mxGraph.prototype.isCellsDeletable = function()

Returns cellsDeletable.

-

setCellsDeletable

mxGraph.prototype.setCellsDeletable = function(value)

Sets cellsDeletable.

Parameters

valueBoolean indicating if the graph should allow deletion of cells.
+

setCellsDeletable

mxGraph.prototype.setCellsDeletable = function(value)

Sets cellsDeletable.

Parameters

valueBoolean indicating if the graph should allow deletion of cells.
-

isLabelMovable

mxGraph.prototype.isLabelMovable = function(cell)

Returns true if the given edges’s label is moveable.  This returns <movable> for all given cells if <isLocked> does not return true for the given cell.

Parameters

cellmxCell whose label should be moved.
+

isLabelMovable

mxGraph.prototype.isLabelMovable = function(cell)

Returns true if the given edges’s label is moveable.  This returns <movable> for all given cells if <isLocked> does not return true for the given cell.

Parameters

cellmxCell whose label should be moved.

getMovableCells

mxGraph.prototype.getMovableCells = function(cells)

Returns the cells which are movable in the given array of cells.

-

isCellMovable

mxGraph.prototype.isCellMovable = function(cell)

Returns true if the given cell is moveable.  This returns cellsMovable for all given cells if isCellLocked does not return true for the given cell and its style does not specify mxConstants.STYLE_MOVABLE to be 0.

Parameters

cellmxCell whose movable state should be returned.
+

isCellMovable

mxGraph.prototype.isCellMovable = function(cell)

Returns true if the given cell is moveable.  This returns cellsMovable for all given cells if isCellLocked does not return true for the given cell and its style does not specify mxConstants.STYLE_MOVABLE to be 0.

Parameters

cellmxCell whose movable state should be returned.
-

isCellsMovable

mxGraph.prototype.isCellsMovable = function()

Returns cellsMovable.

+

isCellsMovable

mxGraph.prototype.isCellsMovable = function()

Returns cellsMovable.

setCellsMovable

mxGraph.prototype.setCellsMovable = function(value)

Specifies if the graph should allow moving of cells.  This implementation updates <cellsMsovable>.

Parameters

valueBoolean indicating if the graph should allow moving of cells.
-

isGridEnabled

mxGraph.prototype.isGridEnabled = function()

Returns gridEnabled as a boolean.

+

isGridEnabled

mxGraph.prototype.isGridEnabled = function()

Returns gridEnabled as a boolean.

setGridEnabled

mxGraph.prototype.setGridEnabled = function(value)

Specifies if the grid should be enabled.

Parameters

valueBoolean indicating if the grid should be enabled.
-

isPortsEnabled

mxGraph.prototype.isPortsEnabled = function()

Returns portsEnabled as a boolean.

+

isPortsEnabled

mxGraph.prototype.isPortsEnabled = function()

Returns portsEnabled as a boolean.

setPortsEnabled

mxGraph.prototype.setPortsEnabled = function(value)

Specifies if the ports should be enabled.

Parameters

valueBoolean indicating if the ports should be enabled.
-

getGridSize

mxGraph.prototype.getGridSize = function()

Returns gridSize.

+

getGridSize

mxGraph.prototype.getGridSize = function()

Returns gridSize.

-

setGridSize

mxGraph.prototype.setGridSize = function(value)

Sets gridSize.

+

setGridSize

mxGraph.prototype.setGridSize = function(value)

Sets gridSize.

-

getTolerance

mxGraph.prototype.getTolerance = function()

Returns tolerance.

+

getTolerance

mxGraph.prototype.getTolerance = function()

Returns tolerance.

-

setTolerance

mxGraph.prototype.setTolerance = function(value)

Sets tolerance.

+

setTolerance

mxGraph.prototype.setTolerance = function(value)

Sets tolerance.

-

isVertexLabelsMovable

mxGraph.prototype.isVertexLabelsMovable = function()

Returns vertexLabelsMovable.

+

isVertexLabelsMovable

mxGraph.prototype.isVertexLabelsMovable = function()

Returns vertexLabelsMovable.

-

setVertexLabelsMovable

mxGraph.prototype.setVertexLabelsMovable = function(value)

Sets vertexLabelsMovable.

+

setVertexLabelsMovable

mxGraph.prototype.setVertexLabelsMovable = function(value)

Sets vertexLabelsMovable.

-

isEdgeLabelsMovable

mxGraph.prototype.isEdgeLabelsMovable = function()

Returns edgeLabelsMovable.

+

isEdgeLabelsMovable

mxGraph.prototype.isEdgeLabelsMovable = function()

Returns edgeLabelsMovable.

-

isEdgeLabelsMovable

+

isEdgeLabelsMovable

-

isSwimlaneNesting

mxGraph.prototype.isSwimlaneNesting = function()

Returns swimlaneNesting as a boolean.

+

isSwimlaneNesting

mxGraph.prototype.isSwimlaneNesting = function()

Returns swimlaneNesting as a boolean.

setSwimlaneNesting

mxGraph.prototype.setSwimlaneNesting = function(value)

Specifies if swimlanes can be nested by drag and drop.  This is only taken into account if dropEnabled is true.

Parameters

valueBoolean indicating if swimlanes can be nested.
-

isSwimlaneSelectionEnabled

mxGraph.prototype.isSwimlaneSelectionEnabled = function()

Returns swimlaneSelectionEnabled as a boolean.

+

isSwimlaneSelectionEnabled

mxGraph.prototype.isSwimlaneSelectionEnabled = function()

Returns swimlaneSelectionEnabled as a boolean.

setSwimlaneSelectionEnabled

mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)

Specifies if swimlanes should be selected if the mouse is released over their content area.

Parameters

valueBoolean indicating if swimlanes content areas should be selected when the mouse is released over them.
-

isMultigraph

mxGraph.prototype.isMultigraph = function()

Returns multigraph as a boolean.

+

isMultigraph

mxGraph.prototype.isMultigraph = function()

Returns multigraph as a boolean.

setMultigraph

mxGraph.prototype.setMultigraph = function(value)

Specifies if the graph should allow multiple connections between the same pair of vertices.

Parameters

valueBoolean indicating if the graph allows multiple connections between the same pair of vertices.
-

isAllowLoops

mxGraph.prototype.isAllowLoops = function()

Returns allowLoops as a boolean.

+

isAllowLoops

mxGraph.prototype.isAllowLoops = function()

Returns allowLoops as a boolean.

setAllowDanglingEdges

mxGraph.prototype.setAllowDanglingEdges = function(value)

Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.

Parameters

valueBoolean indicating if dangling edges are allowed.
-

isAllowDanglingEdges

mxGraph.prototype.isAllowDanglingEdges = function()

Returns allowDanglingEdges as a boolean.

+

isAllowDanglingEdges

mxGraph.prototype.isAllowDanglingEdges = function()

Returns allowDanglingEdges as a boolean.

setConnectableEdges

mxGraph.prototype.setConnectableEdges = function(value)

Specifies if edges should be connectable.

Parameters

valueBoolean indicating if edges should be connectable.
-

isConnectableEdges

mxGraph.prototype.isConnectableEdges = function()

Returns connectableEdges as a boolean.

+

isConnectableEdges

mxGraph.prototype.isConnectableEdges = function()

Returns connectableEdges as a boolean.

-

setCloneInvalidEdges

mxGraph.prototype.setCloneInvalidEdges = function(value)

Specifies if edges should be inserted when cloned but not valid wrt.  getEdgeValidationError.  If false such edges will be silently ignored.

Parameters

valueBoolean indicating if cloned invalid edges should be inserted into the graph or ignored.
+

setCloneInvalidEdges

mxGraph.prototype.setCloneInvalidEdges = function(value)

Specifies if edges should be inserted when cloned but not valid wrt.  getEdgeValidationError.  If false such edges will be silently ignored.

Parameters

valueBoolean indicating if cloned invalid edges should be inserted into the graph or ignored.
-

isCloneInvalidEdges

mxGraph.prototype.isCloneInvalidEdges = function()

Returns cloneInvalidEdges as a boolean.

+

isCloneInvalidEdges

mxGraph.prototype.isCloneInvalidEdges = function()

Returns cloneInvalidEdges as a boolean.

setAllowLoops

mxGraph.prototype.setAllowLoops = function(value)

Specifies if loops are allowed.

Parameters

valueBoolean indicating if loops are allowed.
-

isDisconnectOnMove

mxGraph.prototype.isDisconnectOnMove = function()

Returns disconnectOnMove as a boolean.

+

isDisconnectOnMove

mxGraph.prototype.isDisconnectOnMove = function()

Returns disconnectOnMove as a boolean.

setDisconnectOnMove

mxGraph.prototype.setDisconnectOnMove = function(value)

Specifies if edges should be disconnected when moved.  (Note: Cloned edges are always disconnected.)

Parameters

valueBoolean indicating if edges should be disconnected when moved.
-

isDropEnabled

mxGraph.prototype.isDropEnabled = function()

Returns dropEnabled as a boolean.

+

isDropEnabled

mxGraph.prototype.isDropEnabled = function()

Returns dropEnabled as a boolean.

setDropEnabled

mxGraph.prototype.setDropEnabled = function(value)

Specifies if the graph should allow dropping of cells onto or into other cells.

Parameters

dropEnabledBoolean indicating if the graph should allow dropping of cells into other cells.
-

isSplitEnabled

mxGraph.prototype.isSplitEnabled = function()

Returns splitEnabled as a boolean.

+

isSplitEnabled

mxGraph.prototype.isSplitEnabled = function()

Returns splitEnabled as a boolean.

setSplitEnabled

mxGraph.prototype.setSplitEnabled = function(value)

Specifies if the graph should allow dropping of cells onto or into other cells.

Parameters

dropEnabledBoolean indicating if the graph should allow dropping of cells into other cells.
-

isCellResizable

mxGraph.prototype.isCellResizable = function(cell)

Returns true if the given cell is resizable.  This returns cellsResizable for all given cells if isCellLocked does not return true for the given cell and its style does not specify mxConstants.STYLE_RESIZABLE to be 0.

Parameters

cellmxCell whose resizable state should be returned.
+

isCellResizable

mxGraph.prototype.isCellResizable = function(cell)

Returns true if the given cell is resizable.  This returns cellsResizable for all given cells if isCellLocked does not return true for the given cell and its style does not specify mxConstants.STYLE_RESIZABLE to be 0.

Parameters

cellmxCell whose resizable state should be returned.
-

isCellsResizable

mxGraph.prototype.isCellsResizable = function()

Returns cellsResizable.

+

isCellsResizable

mxGraph.prototype.isCellsResizable = function()

Returns cellsResizable.

-

setCellsResizable

mxGraph.prototype.setCellsResizable = function(value)

Specifies if the graph should allow resizing of cells.  This implementation updates cellsResizable.

Parameters

valueBoolean indicating if the graph should allow resizing of cells.
+

setCellsResizable

mxGraph.prototype.setCellsResizable = function(value)

Specifies if the graph should allow resizing of cells.  This implementation updates cellsResizable.

Parameters

valueBoolean indicating if the graph should allow resizing of cells.
-

isTerminalPointMovable

mxGraph.prototype.isTerminalPointMovable = function(cell,
source)

Returns true if the given terminal point is movable.  This is independent from isCellConnectable and isCellDisconnectable and controls if terminal points can be moved in the graph if the edge is not connected.  Note that it is required for this to return true to connect unconnected edges.  This implementation returns true.

Parameters

cellmxCell whose terminal point should be moved.
sourceBoolean indicating if the source or target terminal should be moved.
+

isTerminalPointMovable

mxGraph.prototype.isTerminalPointMovable = function(cell,
source)

Returns true if the given terminal point is movable.  This is independent from isCellConnectable and isCellDisconnectable and controls if terminal points can be moved in the graph if the edge is not connected.  Note that it is required for this to return true to connect unconnected edges.  This implementation returns true.

Parameters

cellmxCell whose terminal point should be moved.
sourceBoolean indicating if the source or target terminal should be moved.
-

isCellBendable

mxGraph.prototype.isCellBendable = function(cell)

Returns true if the given cell is bendable.  This returns cellsBendable for all given cells if <isLocked> does not return true for the given cell and its style does not specify mxConstants.STYLE_BENDABLE to be 0.

Parameters

cellmxCell whose bendable state should be returned.
+

isCellBendable

mxGraph.prototype.isCellBendable = function(cell)

Returns true if the given cell is bendable.  This returns cellsBendable for all given cells if <isLocked> does not return true for the given cell and its style does not specify mxConstants.STYLE_BENDABLE to be 0.

Parameters

cellmxCell whose bendable state should be returned.

isCellsBendable

mxGraph.prototype.isCellsBendable = function()

Returns <cellsBenadable>.

setCellsBendable

mxGraph.prototype.setCellsBendable = function(value)

Specifies if the graph should allow bending of edges.  This implementation updates <bendable>.

Parameters

valueBoolean indicating if the graph should allow bending of edges.
-

isCellEditable

mxGraph.prototype.isCellEditable = function(cell)

Returns true if the given cell is editable.  This returns cellsEditable for all given cells if isCellLocked does not return true for the given cell and its style does not specify mxConstants.STYLE_EDITABLE to be 0.

Parameters

cellmxCell whose editable state should be returned.
+

isCellEditable

mxGraph.prototype.isCellEditable = function(cell)

Returns true if the given cell is editable.  This returns cellsEditable for all given cells if isCellLocked does not return true for the given cell and its style does not specify mxConstants.STYLE_EDITABLE to be 0.

Parameters

cellmxCell whose editable state should be returned.
-

isCellsEditable

mxGraph.prototype.isCellsEditable = function()

Returns cellsEditable.

+

isCellsEditable

mxGraph.prototype.isCellsEditable = function()

Returns cellsEditable.

-

setCellsEditable

mxGraph.prototype.setCellsEditable = function(value)

Specifies if the graph should allow in-place editing for cell labels.  This implementation updates cellsEditable.

Parameters

valueBoolean indicating if the graph should allow in-place editing.
+

setCellsEditable

mxGraph.prototype.setCellsEditable = function(value)

Specifies if the graph should allow in-place editing for cell labels.  This implementation updates cellsEditable.

Parameters

valueBoolean indicating if the graph should allow in-place editing.
-

isCellDisconnectable

mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)

Returns true if the given cell is disconnectable from the source or target terminal.  This returns isCellsDisconnectable for all given cells if isCellLocked does not return true for the given cell.

Parameters

cellmxCell whose disconnectable state should be returned.
terminalmxCell that represents the source or target terminal.
sourceBoolean indicating if the source or target terminal is to be disconnected.
+

isCellDisconnectable

mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)

Returns true if the given cell is disconnectable from the source or target terminal.  This returns isCellsDisconnectable for all given cells if isCellLocked does not return true for the given cell.

Parameters

cellmxCell whose disconnectable state should be returned.
terminalmxCell that represents the source or target terminal.
sourceBoolean indicating if the source or target terminal is to be disconnected.
-

isCellsDisconnectable

mxGraph.prototype.isCellsDisconnectable = function()

Returns cellsDisconnectable.

+

isCellsDisconnectable

mxGraph.prototype.isCellsDisconnectable = function()

Returns cellsDisconnectable.

-

setCellsDisconnectable

mxGraph.prototype.setCellsDisconnectable = function(value)

Sets cellsDisconnectable.

+

setCellsDisconnectable

mxGraph.prototype.setCellsDisconnectable = function(value)

Sets cellsDisconnectable.

-

isValidSource

mxGraph.prototype.isValidSource = function(cell)

Returns true if the given cell is a valid source for new connections.  This implementation returns true for all non-null values and is called by is called by isValidConnection.

Parameters

cellmxCell that represents a possible source or null.
+

isValidSource

mxGraph.prototype.isValidSource = function(cell)

Returns true if the given cell is a valid source for new connections.  This implementation returns true for all non-null values and is called by is called by isValidConnection.

Parameters

cellmxCell that represents a possible source or null.
-

isValidTarget

mxGraph.prototype.isValidTarget = function(cell)

Returns isValidSource for the given cell.  This is called by isValidConnection.

Parameters

cellmxCell that represents a possible target or null.
+

isValidTarget

mxGraph.prototype.isValidTarget = function(cell)

Returns isValidSource for the given cell.  This is called by isValidConnection.

Parameters

cellmxCell that represents a possible target or null.
-

isValidConnection

mxGraph.prototype.isValidConnection = function(source,
target)

Returns true if the given target cell is a valid target for source.  This is a boolean implementation for not allowing connections between certain pairs of vertices and is called by getEdgeValidationError.  This implementation returns true if isValidSource returns true for the source and isValidTarget returns true for the target.

Parameters

sourcemxCell that represents the source cell.
targetmxCell that represents the target cell.
+

isValidConnection

mxGraph.prototype.isValidConnection = function(source,
target)

Returns true if the given target cell is a valid target for source.  This is a boolean implementation for not allowing connections between certain pairs of vertices and is called by getEdgeValidationError.  This implementation returns true if isValidSource returns true for the source and isValidTarget returns true for the target.

Parameters

sourcemxCell that represents the source cell.
targetmxCell that represents the target cell.
-

setConnectable

mxGraph.prototype.setConnectable = function(connectable)

Specifies if the graph should allow new connections.  This implementation updates mxConnectionHandler.enabled in <connectionHandler>.

Parameters

connectableBoolean indicating if new connections should be allowed.
+

setConnectable

mxGraph.prototype.setConnectable = function(connectable)

Specifies if the graph should allow new connections.  This implementation updates mxConnectionHandler.enabled in <connectionHandler>.

Parameters

connectableBoolean indicating if new connections should be allowed.

isConnectable

mxGraph.prototype.isConnectable = function(connectable)

Returns true if the <connectionHandler> is enabled.

-

setTooltips

mxGraph.prototype.setTooltips = function (enabled)

Specifies if tooltips should be enabled.  This implementation updates mxTooltipHandler.enabled in <tooltipHandler>.

Parameters

enabledBoolean indicating if tooltips should be enabled.
+

setTooltips

mxGraph.prototype.setTooltips = function (enabled)

Specifies if tooltips should be enabled.  This implementation updates mxTooltipHandler.enabled in <tooltipHandler>.

Parameters

enabledBoolean indicating if tooltips should be enabled.
-

setPanning

mxGraph.prototype.setPanning = function(enabled)

Specifies if panning should be enabled.  This implementation updates mxPanningHandler.panningEnabled in <panningHandler>.

Parameters

enabledBoolean indicating if panning should be enabled.
+

setPanning

mxGraph.prototype.setPanning = function(enabled)

Specifies if panning should be enabled.  This implementation updates mxPanningHandler.panningEnabled in <panningHandler>.

Parameters

enabledBoolean indicating if panning should be enabled.
-

isEditing

mxGraph.prototype.isEditing = function(cell)

Returns true if the given cell is currently being edited.  If no cell is specified then this returns true if any cell is currently being edited.

Parameters

cellmxCell that should be checked.
+

isEditing

mxGraph.prototype.isEditing = function(cell)

Returns true if the given cell is currently being edited.  If no cell is specified then this returns true if any cell is currently being edited.

Parameters

cellmxCell that should be checked.
-

isAutoSizeCell

mxGraph.prototype.isAutoSizeCell = function(cell)

Returns true if the size of the given cell should automatically be updated after a change of the label.  This implementation returns autoSizeCells or checks if the cell style does specify mxConstants.STYLE_AUTOSIZE to be 1.

Parameters

cellmxCell that should be resized.
+

isAutoSizeCell

mxGraph.prototype.isAutoSizeCell = function(cell)

Returns true if the size of the given cell should automatically be updated after a change of the label.  This implementation returns autoSizeCells or checks if the cell style does specify mxConstants.STYLE_AUTOSIZE to be 1.

Parameters

cellmxCell that should be resized.
-

isAutoSizeCells

mxGraph.prototype.isAutoSizeCells = function()

Returns autoSizeCells.

+

isAutoSizeCells

mxGraph.prototype.isAutoSizeCells = function()

Returns autoSizeCells.

-

setAutoSizeCells

mxGraph.prototype.setAutoSizeCells = function(value)

Specifies if cell sizes should be automatically updated after a label change.  This implementation sets autoSizeCells to the given parameter.

Parameters

valueBoolean indicating if cells should be resized automatically.
+

setAutoSizeCells

mxGraph.prototype.setAutoSizeCells = function(value)

Specifies if cell sizes should be automatically updated after a label change.  This implementation sets autoSizeCells to the given parameter.

Parameters

valueBoolean indicating if cells should be resized automatically.
-

isExtendParent

mxGraph.prototype.isExtendParent = function(cell)

Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.  This implementation returns isExtendParents if the cell is not an edge.

Parameters

cellmxCell that has been resized.
+

isExtendParent

mxGraph.prototype.isExtendParent = function(cell)

Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.  This implementation returns isExtendParents if the cell is not an edge.

Parameters

cellmxCell that has been resized.
-

isExtendParents

mxGraph.prototype.isExtendParents = function()

Returns extendParents.

+

isExtendParents

mxGraph.prototype.isExtendParents = function()

Returns extendParents.

-

setExtendParents

mxGraph.prototype.setExtendParents = function(value)

Sets extendParents.

Parameters

valueNew boolean value for extendParents.
+

setExtendParents

mxGraph.prototype.setExtendParents = function(value)

Sets extendParents.

Parameters

valueNew boolean value for extendParents.
-

isExtendParentsOnAdd

mxGraph.prototype.isExtendParentsOnAdd = function()

Returns extendParentsOnAdd.

+

isExtendParentsOnAdd

mxGraph.prototype.isExtendParentsOnAdd = function()

Returns extendParentsOnAdd.

-

setExtendParentsOnAdd

mxGraph.prototype.setExtendParentsOnAdd = function(value)

Sets extendParentsOnAdd.

Parameters

valueNew boolean value for extendParentsOnAdd.
+

setExtendParentsOnAdd

mxGraph.prototype.setExtendParentsOnAdd = function(value)

Sets extendParentsOnAdd.

Parameters

valueNew boolean value for extendParentsOnAdd.
-

isConstrainChild

mxGraph.prototype.isConstrainChild = function(cell)

Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.  This implementation returns false for all children of edges and isConstrainChildren otherwise.

Parameters

cellmxCell that should be constrained.
+

isConstrainChild

mxGraph.prototype.isConstrainChild = function(cell)

Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.  This implementation returns false for all children of edges and isConstrainChildren otherwise.

Parameters

cellmxCell that should be constrained.
-

isConstrainChildren

mxGraph.prototype.isConstrainChildren = function()

Returns constrainChildren.

+

isConstrainChildren

mxGraph.prototype.isConstrainChildren = function()

Returns constrainChildren.

-

setConstrainChildren

mxGraph.prototype.setConstrainChildren = function(value)

Sets constrainChildren.

+

setConstrainChildren

mxGraph.prototype.setConstrainChildren = function(value)

Sets constrainChildren.

-

isConstrainChildren

+

isConstrainChildren

-

setConstrainChildren

+

setConstrainChildren

-

getOverlap

mxGraph.prototype.getOverlap = function(cell)

Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.  A value of 0 means all children must stay inside the parent, 1 means the child is allowed to be placed outside of the parent such that it touches one of the parents sides.  If isAllowOverlapParent returns false for the given cell, then this method returns 0.

Parameters

cellmxCell for which the overlap ratio should be returned.
+

getOverlap

mxGraph.prototype.getOverlap = function(cell)

Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.  A value of 0 means all children must stay inside the parent, 1 means the child is allowed to be placed outside of the parent such that it touches one of the parents sides.  If isAllowOverlapParent returns false for the given cell, then this method returns 0.

Parameters

cellmxCell for which the overlap ratio should be returned.
-

isAllowOverlapParent

mxGraph.prototype.isAllowOverlapParent = function(cell)

Returns true if the given cell is allowed to be placed outside of the parents area.

Parameters

cellmxCell that represents the child to be checked.
+

isAllowOverlapParent

mxGraph.prototype.isAllowOverlapParent = function(cell)

Returns true if the given cell is allowed to be placed outside of the parents area.

Parameters

cellmxCell that represents the child to be checked.

getFoldableCells

mxGraph.prototype.getFoldableCells = function(cells,
collapse)

Returns the cells which are movable in the given array of cells.

-

isCellFoldable

mxGraph.prototype.isCellFoldable = function(cell,
collapse)

Returns true if the given cell is foldable.  This implementation returns true if the cell has at least one child and its style does not specify mxConstants.STYLE_FOLDABLE to be 0.

Parameters

cellmxCell whose foldable state should be returned.
+

isCellFoldable

mxGraph.prototype.isCellFoldable = function(cell,
collapse)

Returns true if the given cell is foldable.  This implementation returns true if the cell has at least one child and its style does not specify mxConstants.STYLE_FOLDABLE to be 0.

Parameters

cellmxCell whose foldable state should be returned.
-

isValidDropTarget

mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)

Returns true if the given cell is a valid drop target for the specified cells.  If the given cell is an edge, then <isSplitDropTarget> is used, else <isParentDropTarget> is used to compute the return value.

Parameters

cellmxCell that represents the possible drop target.
cellsmxCells that should be dropped into the target.
evtMouseevent that triggered the invocation.
+

isValidDropTarget

mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)

Returns true if the given cell is a valid drop target for the specified cells.  If the given cell is an edge, then <isSplitDropTarget> is used, else <isParentDropTarget> is used to compute the return value.

Parameters

cellmxCell that represents the possible drop target.
cellsmxCells that should be dropped into the target.
evtMouseevent that triggered the invocation.
-

isSplitTarget

mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)

Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.

Parameters

targetmxCell that represents the edge to be splitted.
cellsmxCells that should split the edge.
evtMouseevent that triggered the invocation.
+

isSplitTarget

mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)

Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.

Parameters

targetmxCell that represents the edge to be splitted.
cellsmxCells that should split the edge.
evtMouseevent that triggered the invocation.
-

getDropTarget

mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)

Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.  If the given array contains a swimlane and swimlaneNesting is false then this always returns null.  If no cell is given, then the bottommost swimlane at the location of the given event is returned.

This function should only be used if isDropEnabled returns true.

Parameters

cellsArray of mxCells which are to be dropped onto the target.
evtMouseevent for the drag and drop.
cellmxCell that is under the mousepointer.
+

getDropTarget

mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)

Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.  If the given array contains a swimlane and swimlaneNesting is false then this always returns null.  If no cell is given, then the bottommost swimlane at the location of the given event is returned.

This function should only be used if isDropEnabled returns true.

Parameters

cellsArray of mxCells which are to be dropped onto the target.
evtMouseevent for the drag and drop.
cellmxCell that is under the mousepointer.

Cell retrieval

-

getDefaultParent

mxGraph.prototype.getDefaultParent = function()

Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.  The value returned by this function should be used as the parent for new cells (aka default layer).

+

getDefaultParent

mxGraph.prototype.getDefaultParent = function()

Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.  The value returned by this function should be used as the parent for new cells (aka default layer).

-

setDefaultParent

mxGraph.prototype.setDefaultParent = function(cell)

Sets the defaultParent to the given cell.  Set this to null to return the first child of the root in getDefaultParent.

+

setDefaultParent

mxGraph.prototype.setDefaultParent = function(cell)

Sets the defaultParent to the given cell.  Set this to null to return the first child of the root in getDefaultParent.

-

getSwimlane

mxGraph.prototype.getSwimlane = function(cell)

Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.

Parameters

cellmxCell for which the ancestor swimlane should be returned.
+

getSwimlane

mxGraph.prototype.getSwimlane = function(cell)

Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.

Parameters

cellmxCell for which the ancestor swimlane should be returned.
-

getSwimlaneAt

mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)

Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.

Parameters

xX-coordinate of the location to be checked.
yY-coordinate of the location to be checked.
parentmxCell that should be used as the root of the recursion.  Default is defaultParent.
+

getSwimlaneAt

mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)

Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.

Parameters

xX-coordinate of the location to be checked.
yY-coordinate of the location to be checked.
parentmxCell that should be used as the root of the recursion.  Default is defaultParent.
-

getCellAt

mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)

Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.  This will also return swimlanes if the given location intersects the content area of the swimlane.  If this is not desired, then the hitsSwimlaneContent may be used if the returned cell is a swimlane to determine if the location is inside the content area or on the actual title of the swimlane.

Parameters

xX-coordinate of the location to be checked.
yY-coordinate of the location to be checked.
parentmxCell that should be used as the root of the recursion.  Default is defaultParent.
verticesOptional boolean indicating if vertices should be returned.  Default is true.
edgesOptional boolean indicating if edges should be returned.  Default is true.
+

getCellAt

mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)

Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.  This will also return swimlanes if the given location intersects the content area of the swimlane.  If this is not desired, then the hitsSwimlaneContent may be used if the returned cell is a swimlane to determine if the location is inside the content area or on the actual title of the swimlane.

Parameters

xX-coordinate of the location to be checked.
yY-coordinate of the location to be checked.
parentmxCell that should be used as the root of the recursion.  Default is defaultParent.
verticesOptional boolean indicating if vertices should be returned.  Default is true.
edgesOptional boolean indicating if edges should be returned.  Default is true.
-

intersects

mxGraph.prototype.intersects = function(state,
x,
y)

Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.

Parameters

statemxCellState that represents the cell state.
xX-coordinate of the location to be checked.
yY-coordinate of the location to be checked.
+

intersects

mxGraph.prototype.intersects = function(state,
x,
y)

Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.

Parameters

statemxCellState that represents the cell state.
xX-coordinate of the location to be checked.
yY-coordinate of the location to be checked.
-

hitsSwimlaneContent

mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)

Returns true if the given coordinate pair is inside the content are of the given swimlane.

Parameters

swimlanemxCell that specifies the swimlane.
xX-coordinate of the mouse event.
yY-coordinate of the mouse event.
+

hitsSwimlaneContent

mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)

Returns true if the given coordinate pair is inside the content are of the given swimlane.

Parameters

swimlanemxCell that specifies the swimlane.
xX-coordinate of the mouse event.
yY-coordinate of the mouse event.
-

getChildVertices

mxGraph.prototype.getChildVertices = function(parent)

Returns the visible child vertices of the given parent.

Parameters

parentmxCell whose children should be returned.
+

getChildVertices

mxGraph.prototype.getChildVertices = function(parent)

Returns the visible child vertices of the given parent.

Parameters

parentmxCell whose children should be returned.
-

getChildEdges

mxGraph.prototype.getChildEdges = function(parent)

Returns the visible child edges of the given parent.

Parameters

parentmxCell whose child vertices should be returned.
+

getChildEdges

mxGraph.prototype.getChildEdges = function(parent)

Returns the visible child edges of the given parent.

Parameters

parentmxCell whose child vertices should be returned.
-

getChildCells

mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)

Returns the visible child vertices or edges in the given parent.  If vertices and edges is false, then all children are returned.

Parameters

parentmxCell whose children should be returned.
verticesOptional boolean that specifies if child vertices should be returned.  Default is false.
edgesOptional boolean that specifies if child edges should be returned.  Default is false.
+

getChildCells

mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)

Returns the visible child vertices or edges in the given parent.  If vertices and edges is false, then all children are returned.

Parameters

parentmxCell whose children should be returned.
verticesOptional boolean that specifies if child vertices should be returned.  Default is false.
edgesOptional boolean that specifies if child edges should be returned.  Default is false.
-

getConnections

mxGraph.prototype.getConnections = function(cell,
parent)

Returns all visible edges connected to the given cell without loops.

Parameters

cellmxCell whose connections should be returned.
parentOptional parent of the opposite end for a connection to be returned.
+

getConnections

mxGraph.prototype.getConnections = function(cell,
parent)

Returns all visible edges connected to the given cell without loops.

Parameters

cellmxCell whose connections should be returned.
parentOptional parent of the opposite end for a connection to be returned.
-

getIncomingEdges

mxGraph.prototype.getIncomingEdges = function(cell,
parent)

Returns the visible incoming edges for the given cell.  If the optional parent argument is specified, then only child edges of the given parent are returned.

Parameters

cellmxCell whose incoming edges should be returned.
parentOptional parent of the opposite end for an edge to be returned.
+

getIncomingEdges

mxGraph.prototype.getIncomingEdges = function(cell,
parent)

Returns the visible incoming edges for the given cell.  If the optional parent argument is specified, then only child edges of the given parent are returned.

Parameters

cellmxCell whose incoming edges should be returned.
parentOptional parent of the opposite end for an edge to be returned.
-

getOutgoingEdges

mxGraph.prototype.getOutgoingEdges = function(cell,
parent)

Returns the visible outgoing edges for the given cell.  If the optional parent argument is specified, then only child edges of the given parent are returned.

Parameters

cellmxCell whose outgoing edges should be returned.
parentOptional parent of the opposite end for an edge to be returned.
+

getOutgoingEdges

mxGraph.prototype.getOutgoingEdges = function(cell,
parent)

Returns the visible outgoing edges for the given cell.  If the optional parent argument is specified, then only child edges of the given parent are returned.

Parameters

cellmxCell whose outgoing edges should be returned.
parentOptional parent of the opposite end for an edge to be returned.
-

getEdges

mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)

Returns the incoming and/or outgoing edges for the given cell.  If the optional parent argument is specified, then only edges are returned where the opposite is in the given parent cell.  If at least one of incoming or outgoing is true, then loops are ignored, if both are false, then all edges connected to the given cell are returned including loops.

Parameters

cellmxCell whose edges should be returned.
parentOptional parent of the opposite end for an edge to be returned.
incomingOptional boolean that specifies if incoming edges should be included in the result.  Default is true.
outgoingOptional boolean that specifies if outgoing edges should be included in the result.  Default is true.
includeLoopsOptional boolean that specifies if loops should be included in the result.  Default is true.
recurseOptional boolean the specifies if the parent specified only need be an ancestral parent, true, or the direct parent, false.  Default is false
+

getEdges

mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)

Returns the incoming and/or outgoing edges for the given cell.  If the optional parent argument is specified, then only edges are returned where the opposite is in the given parent cell.  If at least one of incoming or outgoing is true, then loops are ignored, if both are false, then all edges connected to the given cell are returned including loops.

Parameters

cellmxCell whose edges should be returned.
parentOptional parent of the opposite end for an edge to be returned.
incomingOptional boolean that specifies if incoming edges should be included in the result.  Default is true.
outgoingOptional boolean that specifies if outgoing edges should be included in the result.  Default is true.
includeLoopsOptional boolean that specifies if loops should be included in the result.  Default is true.
recurseOptional boolean the specifies if the parent specified only need be an ancestral parent, true, or the direct parent, false.  Default is false
-

isValidAncestor

mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)

Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.

Parameters

cellmxCell the possible child cell
parentmxCell the possible parent cell
recurseboolean whether or not to recurse the child ancestors
+

isValidAncestor

mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)

Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.

Parameters

cellmxCell the possible child cell
parentmxCell the possible parent cell
recurseboolean whether or not to recurse the child ancestors
-

getOpposites

mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)

Returns all distinct visible opposite cells for the specified terminal on the given edges.

Parameters

edgesArray of mxCells that contains the edges whose opposite terminals should be returned.
terminalTerminal that specifies the end whose opposite should be returned.
sourceOptional boolean that specifies if source terminals should be included in the result.  Default is true.
targetsOptional boolean that specifies if targer terminals should be included in the result.  Default is true.
+

getOpposites

mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)

Returns all distinct visible opposite cells for the specified terminal on the given edges.

Parameters

edgesArray of mxCells that contains the edges whose opposite terminals should be returned.
terminalTerminal that specifies the end whose opposite should be returned.
sourceOptional boolean that specifies if source terminals should be included in the result.  Default is true.
targetsOptional boolean that specifies if targer terminals should be included in the result.  Default is true.

getEdgesBetween

mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)

Returns the edges between the given source and target.  This takes into account collapsed and invisible cells and returns the connected edges as displayed on the screen.

Parameters

source - target - directed -

-

getPointForEvent

mxGraph.prototype.getPointForEvent = function(evt,
addOffset)

Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of <container> and applies the grid.

Parameters

evtMousevent that contains the mouse pointer location.
addOffsetOptional boolean that specifies if the position should be offset by half of the gridSize.  Default is true.
+

getPointForEvent

mxGraph.prototype.getPointForEvent = function(evt,
addOffset)

Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of <container> and applies the grid.

Parameters

evtMousevent that contains the mouse pointer location.
addOffsetOptional boolean that specifies if the position should be offset by half of the gridSize.  Default is true.
-

getCells

mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)

Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).  The result is added to the optional result array, which is returned from the function.  If no result array is specified then a new array is created and returned.

Parameters

xX-coordinate of the rectangle.
yY-coordinate of the rectangle.
widthWidth of the rectangle.
heightHeight of the rectangle.
parentmxCell whose children should be checked.  Default is defaultParent.
resultOptional array to store the result in.
+

getCells

mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)

Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).  The result is added to the optional result array, which is returned from the function.  If no result array is specified then a new array is created and returned.

Parameters

xX-coordinate of the rectangle.
yY-coordinate of the rectangle.
widthWidth of the rectangle.
heightHeight of the rectangle.
parentmxCell whose children should be checked.  Default is defaultParent.
resultOptional array to store the result in.
-

getCellsBeyond

mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)

Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.

Parameters

x0X-coordinate of the origin.
y0Y-coordinate of the origin.
parentOptional mxCell whose children should be checked.  Default is defaultParent.
rightHalfpaneBoolean indicating if the cells in the right halfpane from the origin should be returned.
bottomHalfpaneBoolean indicating if the cells in the bottom halfpane from the origin should be returned.
+

getCellsBeyond

mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)

Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.

Parameters

x0X-coordinate of the origin.
y0Y-coordinate of the origin.
parentOptional mxCell whose children should be checked.  Default is defaultParent.
rightHalfpaneBoolean indicating if the cells in the right halfpane from the origin should be returned.
bottomHalfpaneBoolean indicating if the cells in the bottom halfpane from the origin should be returned.
-

findTreeRoots

mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)

Returns all children in the given parent which do not have incoming edges.  If the result is empty then the with the greatest difference between incoming and outgoing edges is returned.

Parameters

parentmxCell whose children should be checked.
isolateOptional boolean that specifies if edges should be ignored if the opposite end is not a child of the given parent cell.  Default is false.
invertOptional boolean that specifies if outgoing or incoming edges should be counted for a tree root.  If false then outgoing edges will be counted.  Default is false.
+

findTreeRoots

mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)

Returns all children in the given parent which do not have incoming edges.  If the result is empty then the with the greatest difference between incoming and outgoing edges is returned.

Parameters

parentmxCell whose children should be checked.
isolateOptional boolean that specifies if edges should be ignored if the opposite end is not a child of the given parent cell.  Default is false.
invertOptional boolean that specifies if outgoing or incoming edges should be counted for a tree root.  If false then outgoing edges will be counted.  Default is false.

traverse

mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)

Traverses the (directed) graph invoking the given function for each visited vertex and edge.  The function is invoked with the current vertex and the incoming edge as a parameter.  This implementation makes sure each vertex is only visited once.  The function may return false if the traversal should stop at the given vertex.

Example

mxLog.show();
 var cell = graph.getSelectionCell();
 graph.traverse(cell, false, function(vertex, edge)
 {
   mxLog.debug(graph.getLabel(vertex));
-});

Parameters

vertexmxCell that represents the vertex where the traversal starts.
directedOptional boolean indicating if edges should only be traversed from source to target.  Default is true.
funcVisitor function that takes the current vertex and the incoming edge as arguments.  The traversal stops if the function returns false.
edgeOptional mxCell that represents the incoming edge.  This is null for the first step of the traversal.
visitedOptional array of cell paths for the visited cells.
+});

Parameters

vertexmxCell that represents the vertex where the traversal starts.
directedOptional boolean indicating if edges should only be traversed from source to target.  Default is true.
funcVisitor function that takes the current vertex and the incoming edge as arguments.  The traversal stops if the function returns false.
edgeOptional mxCell that represents the incoming edge.  This is null for the first step of the traversal.
visitedOptional array of cell paths for the visited cells.

Selection

-

isCellSelected

mxGraph.prototype.isCellSelected = function(cell)

Returns true if the given cell is selected.

Parameters

cellmxCell for which the selection state should be returned.
+

isCellSelected

mxGraph.prototype.isCellSelected = function(cell)

Returns true if the given cell is selected.

Parameters

cellmxCell for which the selection state should be returned.

isSelectionEmpty

mxGraph.prototype.isSelectionEmpty = function()

Returns true if the selection is empty.

-

clearSelection

mxGraph.prototype.clearSelection = function()

Clears the selection using mxGraphSelectionModel.clear.

+

clearSelection

mxGraph.prototype.clearSelection = function()

Clears the selection using mxGraphSelectionModel.clear.

getSelectionCount

mxGraph.prototype.getSelectionCount = function()

Returns the number of selected cells.

-

getSelectionCell

mxGraph.prototype.getSelectionCell = function()

Returns the first cell from the array of selected mxCells.

+

getSelectionCell

mxGraph.prototype.getSelectionCell = function()

Returns the first cell from the array of selected mxCells.

-

getSelectionCells

mxGraph.prototype.getSelectionCells = function()

Returns the array of selected mxCells.

+

getSelectionCells

mxGraph.prototype.getSelectionCells = function()

Returns the array of selected mxCells.

-

setSelectionCell

mxGraph.prototype.setSelectionCell = function(cell)

Sets the selection cell.

Parameters

cellmxCell to be selected.
+

setSelectionCell

mxGraph.prototype.setSelectionCell = function(cell)

Sets the selection cell.

Parameters

cellmxCell to be selected.
-

setSelectionCells

mxGraph.prototype.setSelectionCells = function(cells)

Sets the selection cell.

Parameters

cellsArray of mxCells to be selected.
+

setSelectionCells

mxGraph.prototype.setSelectionCells = function(cells)

Sets the selection cell.

Parameters

cellsArray of mxCells to be selected.
-

addSelectionCell

mxGraph.prototype.addSelectionCell = function(cell)

Adds the given cell to the selection.

Parameters

cellmxCell to be add to the selection.
+

addSelectionCell

mxGraph.prototype.addSelectionCell = function(cell)

Adds the given cell to the selection.

Parameters

cellmxCell to be add to the selection.
-

addSelectionCells

mxGraph.prototype.addSelectionCells = function(cells)

Adds the given cells to the selection.

Parameters

cellsArray of mxCells to be added to the selection.
+

addSelectionCells

mxGraph.prototype.addSelectionCells = function(cells)

Adds the given cells to the selection.

Parameters

cellsArray of mxCells to be added to the selection.
-

removeSelectionCell

mxGraph.prototype.removeSelectionCell = function(cell)

Removes the given cell from the selection.

Parameters

cellmxCell to be removed from the selection.
+

removeSelectionCell

mxGraph.prototype.removeSelectionCell = function(cell)

Removes the given cell from the selection.

Parameters

cellmxCell to be removed from the selection.
-

removeSelectionCells

mxGraph.prototype.removeSelectionCells = function(cells)

Removes the given cells from the selection.

Parameters

cellsArray of mxCells to be removed from the selection.
+

removeSelectionCells

mxGraph.prototype.removeSelectionCells = function(cells)

Removes the given cells from the selection.

Parameters

cellsArray of mxCells to be removed from the selection.
-

selectRegion

mxGraph.prototype.selectRegion = function(rect,
evt)

Selects and returns the cells inside the given rectangle for the specified event.

Parameters

rectmxRectangle that represents the region to be selected.
evtMouseevent that triggered the selection.
+

selectRegion

mxGraph.prototype.selectRegion = function(rect,
evt)

Selects and returns the cells inside the given rectangle for the specified event.

Parameters

rectmxRectangle that represents the region to be selected.
evtMouseevent that triggered the selection.

selectNextCell

mxGraph.prototype.selectNextCell = function()

Selects the next cell.

@@ -1162,31 +1164,31 @@ graph.traverse(cell, false, function(vertex, edge)

selectCell

mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)

Selects the next, parent, first child or previous cell, if all arguments are false.

Parameters

isNextBoolean indicating if the next cell should be selected.
isParentBoolean indicating if the parent cell should be selected.
isChildBoolean indicating if the first child cell should be selected.
-

selectAll

mxGraph.prototype.selectAll = function(parent)

Selects all children of the given parent cell or the children of the default parent if no parent is specified.  To select leaf vertices and/or edges use selectCells.

Parameters

parentOptional mxCell whose children should be selected.  Default is defaultParent.
+

selectAll

mxGraph.prototype.selectAll = function(parent)

Selects all children of the given parent cell or the children of the default parent if no parent is specified.  To select leaf vertices and/or edges use selectCells.

Parameters

parentOptional mxCell whose children should be selected.  Default is defaultParent.

selectVertices

mxGraph.prototype.selectVertices = function(parent)

Select all vertices inside the given parent or the default parent.

selectVertices

Select all vertices inside the given parent or the default parent.

-

selectCells

mxGraph.prototype.selectCells = function(vertices,
edges,
parent)

Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.  Use selectAll to select all cells.

Parameters

verticesBoolean indicating if vertices should be selected.
edgesBoolean indicating if edges should be selected.
parentOptional mxCell that acts as the root of the recursion.  Default is defaultParent.
+

selectCells

mxGraph.prototype.selectCells = function(vertices,
edges,
parent)

Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.  Use selectAll to select all cells.

Parameters

verticesBoolean indicating if vertices should be selected.
edgesBoolean indicating if edges should be selected.
parentOptional mxCell that acts as the root of the recursion.  Default is defaultParent.
-

selectCellForEvent

mxGraph.prototype.selectCellForEvent = function(cell,
evt)

Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.

Parameters

cellmxCell to be selected.
evtOptional mouseevent that triggered the selection.
+

selectCellForEvent

mxGraph.prototype.selectCellForEvent = function(cell,
evt)

Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.

Parameters

cellmxCell to be selected.
evtOptional mouseevent that triggered the selection.
-

selectCellsForEvent

mxGraph.prototype.selectCellsForEvent = function(cells,
evt)

Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.

Parameters

cellsArray of mxCells to be selected.
evtOptional mouseevent that triggered the selection.
+

selectCellsForEvent

mxGraph.prototype.selectCellsForEvent = function(cells,
evt)

Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.

Parameters

cellsArray of mxCells to be selected.
evtOptional mouseevent that triggered the selection.

Selection state

-

createHandler

mxGraph.prototype.createHandler = function(state)

Creates a new handler for the given cell state.  This implementation returns a new mxEdgeHandler of the corresponding cell is an edge, otherwise it returns an mxVertexHandler.

Parameters

statemxCellState whose handler should be created.
+

createHandler

mxGraph.prototype.createHandler = function(state)

Creates a new handler for the given cell state.  This implementation returns a new mxEdgeHandler of the corresponding cell is an edge, otherwise it returns an mxVertexHandler.

Parameters

statemxCellState whose handler should be created.

Graph events

-

addMouseListener

mxGraph.prototype.addMouseListener = function(listener)

Adds a listener to the graph event dispatch loop.  The listener must implement the mouseDown, mouseMove and mouseUp methods as shown in the mxMouseEvent class.

Parameters

listenerListener to be added to the graph event listeners.
+

addMouseListener

mxGraph.prototype.addMouseListener = function(listener)

Adds a listener to the graph event dispatch loop.  The listener must implement the mouseDown, mouseMove and mouseUp methods as shown in the mxMouseEvent class.

Parameters

listenerListener to be added to the graph event listeners.

removeMouseListener

mxGraph.prototype.removeMouseListener = function(listener)

Removes the specified graph listener.

Parameters

listenerListener to be removed from the graph event listeners.
-

updateMouseEvent

mxGraph.prototype.updateMouseEvent = function(me)

Sets the graphX and graphY properties if the given mxMouseEvent if required.

+

updateMouseEvent

mxGraph.prototype.updateMouseEvent = function(me)

Sets the graphX and graphY properties if the given mxMouseEvent if required.

-

fireMouseEvent

mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)

Dispatches the given event in the graph event dispatch loop.  Possible event names are mxEvent.MOUSE_DOWN, mxEvent.MOUSE_MOVE and mxEvent.MOUSE_UP.  All listeners are invoked for all events regardless of the consumed state of the event.

Parameters

evtNameString that specifies the type of event to be dispatched.
memxMouseEvent to be fired.
senderOptional sender argument.  Default is this.
+

fireMouseEvent

mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)

Dispatches the given event in the graph event dispatch loop.  Possible event names are mxEvent.MOUSE_DOWN, mxEvent.MOUSE_MOVE and mxEvent.MOUSE_UP.  All listeners are invoked for all events regardless of the consumed state of the event.

Parameters

evtNameString that specifies the type of event to be dispatched.
memxMouseEvent to be fired.
senderOptional sender argument.  Default is this.

destroy

mxGraph.prototype.destroy = function()

Destroys the graph and all its resources.

@@ -1204,7 +1206,7 @@ HideAllBut([11], 13);// --> -
Base class for objects that dispatch named events.
mxGraph.prototype.alignCells = function(align,
cells,
param)
Aligns the given cells vertically or horizontally according to the given alignment using the optional parameter as the coordinate.
mxGraph.prototype.flipEdge = function(edge)
Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraph.prototype.addCells = function(cells,
parent,
index,
source,
target)
Adds the cells to the parent at the given index, connecting each cell to the optional source and target terminal.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)
Sets the collapsed state of the specified cells and all descendants if recurse is true.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxGraph.prototype.addCellOverlay = function(cell,
overlay)
Adds an mxCellOverlay for the specified cell.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
mxGraph.prototype.EMPTY_ARRAY
Immutable empty array instance.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
Extends mxEventSource to implement a graph model.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
Extends mxEventSource to implement a view for a graph.
Represents the current state of a cell in a given mxGraphView.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
Defines the appearance of the cells in a graph.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
Implements the selection model for a graph.
mxGraph.prototype.cellEditor
Holds the mxCellEditor that is used as the in-place editing.
In-place editor for the graph.
mxGraph.prototype.cellRenderer
Holds the mxCellRenderer for rendering the cells in the graph.
Renders cells into a document object model.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Defines invalid connections along with the error messages that they produce.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraph.prototype.dialect
Dialect to be used for drawing the graph.
mxGraph.prototype.gridSize
Specifies the grid size.
mxGraph.prototype.gridEnabled
Specifies if the grid is enabled.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
mxGraph.prototype.doubleTapEnabled
Specifies if double taps on touch-based devices should be handled.
mxGraph.prototype.doubleTapTimeout
Specifies the timeout for double taps.
mxGraph.prototype.doubleTapTolerance
Specifies the tolerance for double taps.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
mxGraph.prototype.gestureEnabled
Specifies if the handleGesture method should be invoked.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxGraph.prototype.defaultOverlap
Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
mxGraph.prototype.defaultParent
Specifies the default parent to be used to insert new cells.
mxGraph.prototype.alternateEdgeStyle
Specifies the alternate edge style to be used if the main control point on an edge is being doubleclicked.
mxGraph.prototype.backgroundImage
Specifies the mxImage to be returned by getBackgroundImage.
Encapsulates the URL, width and height of an image.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxGraph.prototype.enabled
Specifies the return value for isEnabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraph.prototype.escapeEnabled
Specifies if mxKeyHandler should invoke escape when the escape key is pressed.
Event handler that listens to keystroke events.
mxGraph.prototype.escape = function(evt)
Processes an escape keystroke.
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
mxGraph.prototype.enterStopsCellEditing
If true, pressing the enter key without pressing control or shift will stop editing and accept the new value.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxGraph.prototype.exportEnabled
Specifies the return value for canExportCell.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxGraph.prototype.cellsLocked
Specifies the return value for isCellLocked.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.cellsCloneable
Specifies the return value for isCellCloneable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
mxGraph.prototype.foldingEnabled
Specifies if folding (collapse and expand via an image icon in the graph should be enabled).
mxGraph.prototype.cellsEditable
Specifies the return value for isCellEditable.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.cellsDeletable
Specifies the return value for isCellDeletable.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.cellsMovable
Specifies the return value for isCellMovable.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.edgeLabelsMovable
Specifies the return value for edges in isLabelMovable.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraph.prototype.dropEnabled
Specifies the return value for isDropEnabled.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxGraph.prototype.cellsResizable
Specifies the return value for isCellResizable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.cellsBendable
Specifies the return value for isCellsBendable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.cellsSelectable
Specifies the return value for isCellSelectable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.cellsDisconnectable
Specifies the return value for isCellDisconntable.
mxGraph.prototype.autoSizeCells
Specifies if the graph should automatically update the cell size after an edit.
mxGraph.prototype.autoScroll
Specifies if the graph should automatically scroll if the mouse goes near the container edge while dragging.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxGraph.prototype.allowAutoPanning
Specifies if panning via panGraph should be allowed to implement autoscroll if no scrollbars are available in scrollPointToVisible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxGraph.prototype.autoExtend
Specifies if the size of the graph should be automatically extended if the mouse goes near the container edge while dragging.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.border
Border to be added to the bottom and right side when the container is being resized after the graph has been changed.
mxGraph.prototype.ordered
Specifies if the display should reflect the order of the cells in the model.
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxGraph.prototype.keepEdgesInBackground
Specifies if edges should appear in the background regardless of their order in the model.
mxGraph.prototype.allowNegativeCoordinates
Specifies if negative coordinates for vertices are allowed.
mxGraph.prototype.constrainChildren
Specifies the return value for isConstrainChildren.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.extendParents
Specifies if a parent should contain the child bounds after a resize of the child.
mxGraph.prototype.extendParentsOnAdd
Specifies if parents should be extended according to the extendParents switch if cells are added.
mxGraph.prototype.collapseToPreferredSize
Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxGraph.prototype.centerZoom
Specifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.allowLoops
Specifies if loops (aka self-references) are allowed.
mxGraph.prototype.defaultLoopStyle
mxEdgeStyle to be used for loops.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.connectableEdges
Specifies if edges are connectable.
mxGraph.prototype.allowDanglingEdges
Specifies if edges with disconnected terminals are allowed in the graph.
mxGraph.prototype.cloneInvalidEdges
Specifies if edges that are cloned should be validated and only inserted if they are valid.
mxGraph.prototype.disconnectOnMove
Specifies if edges should be disconnected from their terminals when they are moved.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
mxGraph.prototype.htmlLabels
Specifies the return value for isHtmlLabel.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
mxGraph.prototype.fit = function(border,
keepOrigin)
Scales the graph such that the complete diagram fits into container and returns the current scale in the view.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxGraph.prototype.collapsedImage
Specifies the mxImage to indicate a collapsed state.
mxGraph.prototype.expandedImage
Specifies the mxImage to indicate a expanded state.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.collapseExpandResource
Specifies the resource key for the tooltip on the collapse/expand icon.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
Fires between begin- and endUpdate in cellLabelChanged.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
Implements a handler for panning.
mxGraph.prototype.getOffsetSize = function()
Returns the actual size of the the viewport minus padding and border sizes.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.addImageBundle = function(bundle)
Adds the specified mxImageBundle.
Maps from keys to base64 encoded images or file locations.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
Cells are the elements of the graph model.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
Extends mxRectangle to represent the geometry of a cell.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxGraph.prototype.addEdge = function(edge,
parent,
source,
target,
index)
Adds the edge to the parent and connects it to the given source and target terminals.
mxGraph.prototype.addCell = function(cell,
parent,
index,
source,
target)
Adds the cell to the parent and connects it to the given source and target terminals.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxGraph.prototype.addAllEdges = function(cells)
Returns an array with the given cells and all edges that are connected to a cell or one of its descendants.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
mxGraph.prototype.handleGesture = function(state,
evt)
Invokes if a gesture event has been detected on a cell state.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
Fires between begin- and endUpdate in resizeCells.
Fires between begin- and endUpdate in cellsResized.
mxGraph.prototype.extendParent = function(cell)
Resizes the parents recursively so that they contain the complete area of the resized child cell.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
Fires between begin- and endUpdate in connectCell.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
Implements a 2-dimensional vector with double precision coordinates.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraph.prototype.enterGroup = function(cell)
Uses the given cell as the root of the displayed cell hierarchy.
mxGraph.prototype.exitGroup = function()
Changes the current root to the next valid root in the displayed cell hierarchy.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxGraph.prototype.isForceMarqueeEvent = function(evt)
Returns true if the given event forces marquee selection.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)
Returns all children in the given parent which do not have incoming edges.
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.addSelectionCell = function(cell)
Adds the given cell to the selection.
mxGraph.prototype.addSelectionCells = function(cells)
Adds the given cells to the selection.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.addMouseListener = function(listener)
Adds a listener to the graph event dispatch loop.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
Base class for all mouse events in mxGraph.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
Event handler that selects rectangular regions.
Graph event handler that displays tooltips.
Event handler that pans and creates popupmenus.
Graph event handler that creates new connections.
Graph event handler that handles selection.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Defines the key for the image style.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Action to change a user object in a model.
Defines various global constants.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
Implements a layout manager that updates the layout for a given transaction.
Defines the SVG display dialect name.
Defines the strict HTML display dialect.
Defines the preferred HTML display dialect name.
Defines the mixed HTML display dialect name.
Defines the VML display dialect name.
mxShape.prototype.isMixedModeHtml = function()
Used to determine if a shape can be rendered using createHtml in mixed mode Html without compromising the display accuracy.
mxShape.prototype.preferModeHtml
Specifies if createHtml should be used in prefer Html mode.
Defines the rectangle for the A4 portrait page format.
Implements printing of a diagram across multiple pages.
Defines the key for the loop style.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
Defines the key for the fill color.
Defines the key for the rounded style.
Fires between begin- and endUpdate in flipEdge.
Defines the key for the elbow style.
Fires between begin- and endUpdate in orderCells.
Fires between begin- and endUpdate in cellsOrdered.
Fires between begin- and endUpdate in groupCells.
Fires between begin- and endUpdate in addCells.
Fires between begin- and endUpdate in cellsAdded.
Fires between begin- and endUpdate in removeCells.
Fires between begin- and endUpdate in cellsRemoved.
Fires between begin- and endUpdate in splitEdge.
Fires between begin- and endUpdate in toggleCells.
Fires between begin- and endUpdate in foldCells.
Fires between begin- and endUpdate in cellsFolded.
Fires between begin- and endUpdate in updateCellSize.
Fires between begin- and endUpdate in moveCells.
Fires between begin- and endUpdate in cellsMoved.
Implements a shape based on a mxStencil.
Implements a generic shape which is based on a XML node as a description.
Fires between begin- and endUpdate in cellConnected.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
Specifies the event name for pan.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
mxGraphModel.prototype.getGeometry = function(cell,
geometry)
Returns the mxGeometry of the given mxCell.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
Defines the key for the white-space style.
Defines the key for the overflow style.
Defines the key for the verticalAlign style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator shape used within an mxLabel.
Defines the key for the indicator image used within an mxLabel.
Extends mxShape to implement a swimlane shape.
Defines the key for the cloneable style.
Defines the key for the deletable style.
Defines the key for the movable style.
Defines the key for the resizable style.
Defines the key for the bendable style.
Defines the key for the editable style.
mxConnectionHandler.prototype.enabled
Specifies if events are handled.
mxTooltipHandler.prototype.enabled
Specifies if events are handled.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
Defines the key for the autosize style.
Defines the key for the foldable style.
Graph event handler that reconnects edges and modifies control points and the edge label location.
Event handler for resizing cells.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
+
Base class for objects that dispatch named events.
mxGraph.prototype.alignCells = function(align,
cells,
param)
Aligns the given cells vertically or horizontally according to the given alignment using the optional parameter as the coordinate.
mxGraph.prototype.flipEdge = function(edge)
Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraph.prototype.addCells = function(cells,
parent,
index,
source,
target)
Adds the cells to the parent at the given index, connecting each cell to the optional source and target terminal.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)
Sets the collapsed state of the specified cells and all descendants if recurse is true.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxGraph.prototype.addCellOverlay = function(cell,
overlay)
Adds an mxCellOverlay for the specified cell.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
mxGraph.prototype.EMPTY_ARRAY
Immutable empty array instance.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
Extends mxEventSource to implement a graph model.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
Extends mxEventSource to implement a view for a graph.
Represents the current state of a cell in a given mxGraphView.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
Defines the appearance of the cells in a graph.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
Implements the selection model for a graph.
mxGraph.prototype.cellEditor
Holds the mxCellEditor that is used as the in-place editing.
In-place editor for the graph.
mxGraph.prototype.cellRenderer
Holds the mxCellRenderer for rendering the cells in the graph.
Renders cells into a document object model.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Defines invalid connections along with the error messages that they produce.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraph.prototype.dialect
Dialect to be used for drawing the graph.
mxGraph.prototype.gridSize
Specifies the grid size.
mxGraph.prototype.gridEnabled
Specifies if the grid is enabled.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
mxGraph.prototype.doubleTapEnabled
Specifies if double taps on touch-based devices should be handled.
mxGraph.prototype.doubleTapTimeout
Specifies the timeout for double taps.
mxGraph.prototype.doubleTapTolerance
Specifies the tolerance for double taps.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
mxGraph.prototype.gestureEnabled
Specifies if the handleGesture method should be invoked.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxGraph.prototype.defaultOverlap
Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
mxGraph.prototype.defaultParent
Specifies the default parent to be used to insert new cells.
mxGraph.prototype.alternateEdgeStyle
Specifies the alternate edge style to be used if the main control point on an edge is being doubleclicked.
mxGraph.prototype.backgroundImage
Specifies the mxImage to be returned by getBackgroundImage.
Encapsulates the URL, width and height of an image.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxGraph.prototype.enabled
Specifies the return value for isEnabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraph.prototype.escapeEnabled
Specifies if mxKeyHandler should invoke escape when the escape key is pressed.
Event handler that listens to keystroke events.
mxGraph.prototype.escape = function(evt)
Processes an escape keystroke.
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
mxGraph.prototype.enterStopsCellEditing
If true, pressing the enter key without pressing control or shift will stop editing and accept the new value.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxGraph.prototype.exportEnabled
Specifies the return value for canExportCell.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxGraph.prototype.cellsLocked
Specifies the return value for isCellLocked.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.cellsCloneable
Specifies the return value for isCellCloneable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
mxGraph.prototype.foldingEnabled
Specifies if folding (collapse and expand via an image icon in the graph should be enabled).
mxGraph.prototype.cellsEditable
Specifies the return value for isCellEditable.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.cellsDeletable
Specifies the return value for isCellDeletable.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.cellsMovable
Specifies the return value for isCellMovable.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.edgeLabelsMovable
Specifies the return value for edges in isLabelMovable.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraph.prototype.dropEnabled
Specifies the return value for isDropEnabled.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxGraph.prototype.cellsResizable
Specifies the return value for isCellResizable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.cellsBendable
Specifies the return value for isCellsBendable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.cellsSelectable
Specifies the return value for isCellSelectable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.cellsDisconnectable
Specifies the return value for isCellDisconntable.
mxGraph.prototype.autoSizeCells
Specifies if the graph should automatically update the cell size after an edit.
mxGraph.prototype.autoScroll
Specifies if the graph should automatically scroll if the mouse goes near the container edge while dragging.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxGraph.prototype.allowAutoPanning
Specifies if panning via panGraph should be allowed to implement autoscroll if no scrollbars are available in scrollPointToVisible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxGraph.prototype.autoExtend
Specifies if the size of the graph should be automatically extended if the mouse goes near the container edge while dragging.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.border
Border to be added to the bottom and right side when the container is being resized after the graph has been changed.
mxGraph.prototype.ordered
Specifies if the display should reflect the order of the cells in the model.
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxGraph.prototype.keepEdgesInBackground
Specifies if edges should appear in the background regardless of their order in the model.
mxGraph.prototype.allowNegativeCoordinates
Specifies if negative coordinates for vertices are allowed.
mxGraph.prototype.constrainChildren
Specifies the return value for isConstrainChildren.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.extendParents
Specifies if a parent should contain the child bounds after a resize of the child.
mxGraph.prototype.extendParentsOnAdd
Specifies if parents should be extended according to the extendParents switch if cells are added.
mxGraph.prototype.collapseToPreferredSize
Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxGraph.prototype.centerZoom
Specifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.allowLoops
Specifies if loops (aka self-references) are allowed.
mxGraph.prototype.defaultLoopStyle
mxEdgeStyle to be used for loops.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.connectableEdges
Specifies if edges are connectable.
mxGraph.prototype.allowDanglingEdges
Specifies if edges with disconnected terminals are allowed in the graph.
mxGraph.prototype.cloneInvalidEdges
Specifies if edges that are cloned should be validated and only inserted if they are valid.
mxGraph.prototype.disconnectOnMove
Specifies if edges should be disconnected from their terminals when they are moved.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
mxGraph.prototype.htmlLabels
Specifies the return value for isHtmlLabel.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
mxGraph.prototype.fit = function(border,
keepOrigin)
Scales the graph such that the complete diagram fits into container and returns the current scale in the view.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxGraph.prototype.collapsedImage
Specifies the mxImage to indicate a collapsed state.
mxGraph.prototype.expandedImage
Specifies the mxImage to indicate a expanded state.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.collapseExpandResource
Specifies the resource key for the tooltip on the collapse/expand icon.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
Fires between begin- and endUpdate in cellLabelChanged.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
Implements a handler for panning.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.addImageBundle = function(bundle)
Adds the specified mxImageBundle.
Maps from keys to base64 encoded images or file locations.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
Cells are the elements of the graph model.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
Extends mxRectangle to represent the geometry of a cell.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxGraph.prototype.addEdge = function(edge,
parent,
source,
target,
index)
Adds the edge to the parent and connects it to the given source and target terminals.
mxGraph.prototype.addCell = function(cell,
parent,
index,
source,
target)
Adds the cell to the parent and connects it to the given source and target terminals.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxGraph.prototype.addAllEdges = function(cells)
Returns an array with the given cells and all edges that are connected to a cell or one of its descendants.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
mxGraph.prototype.handleGesture = function(state,
evt)
Invokes if a gesture event has been detected on a cell state.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
Fires between begin- and endUpdate in resizeCells.
Fires between begin- and endUpdate in cellsResized.
mxGraph.prototype.extendParent = function(cell)
Resizes the parents recursively so that they contain the complete area of the resized child cell.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
Fires between begin- and endUpdate in connectCell.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
Implements a 2-dimensional vector with double precision coordinates.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraph.prototype.enterGroup = function(cell)
Uses the given cell as the root of the displayed cell hierarchy.
mxGraph.prototype.exitGroup = function()
Changes the current root to the next valid root in the displayed cell hierarchy.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxGraph.prototype.isForceMarqueeEvent = function(evt)
Returns true if the given event forces marquee selection.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)
Returns all children in the given parent which do not have incoming edges.
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.addSelectionCell = function(cell)
Adds the given cell to the selection.
mxGraph.prototype.addSelectionCells = function(cells)
Adds the given cells to the selection.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.addMouseListener = function(listener)
Adds a listener to the graph event dispatch loop.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
Base class for all mouse events in mxGraph.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
Event handler that selects rectangular regions.
Graph event handler that displays tooltips.
Event handler that pans and creates popupmenus.
Graph event handler that creates new connections.
Graph event handler that handles selection.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Defines the key for the image style.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Action to change a user object in a model.
Defines various global constants.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
Implements a layout manager that updates the layout for a given transaction.
Defines the SVG display dialect name.
Defines the strict HTML display dialect.
Defines the preferred HTML display dialect name.
Defines the mixed HTML display dialect name.
Defines the VML display dialect name.
mxShape.prototype.isMixedModeHtml = function()
Used to determine if a shape can be rendered using createHtml in mixed mode Html without compromising the display accuracy.
mxShape.prototype.preferModeHtml
Specifies if createHtml should be used in prefer Html mode.
Defines the rectangle for the A4 portrait page format.
Implements printing of a diagram across multiple pages.
Defines the key for the loop style.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
Defines the key for the fill color.
Defines the key for the rounded style.
Fires between begin- and endUpdate in flipEdge.
Defines the key for the elbow style.
Fires between begin- and endUpdate in orderCells.
Fires between begin- and endUpdate in cellsOrdered.
Fires between begin- and endUpdate in groupCells.
Fires between begin- and endUpdate in addCells.
Fires between begin- and endUpdate in cellsAdded.
Fires between begin- and endUpdate in removeCells.
Fires between begin- and endUpdate in cellsRemoved.
Fires between begin- and endUpdate in splitEdge.
Fires between begin- and endUpdate in toggleCells.
Fires between begin- and endUpdate in foldCells.
Fires between begin- and endUpdate in cellsFolded.
Fires between begin- and endUpdate in updateCellSize.
Fires between begin- and endUpdate in moveCells.
Fires between begin- and endUpdate in cellsMoved.
Implements a shape based on a mxStencil.
Implements a generic shape which is based on a XML node as a description.
Fires between begin- and endUpdate in cellConnected.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
Specifies the event name for pan.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
mxGraphModel.prototype.getGeometry = function(cell,
geometry)
Returns the mxGeometry of the given mxCell.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
Defines the key for the white-space style.
Defines the key for the overflow style.
Defines the key for the verticalAlign style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator shape used within an mxLabel.
Defines the key for the indicator image used within an mxLabel.
Extends mxShape to implement a swimlane shape.
Defines the key for the cloneable style.
Defines the key for the deletable style.
Defines the key for the movable style.
Defines the key for the resizable style.
Defines the key for the bendable style.
Defines the key for the editable style.
mxConnectionHandler.prototype.enabled
Specifies if events are handled.
mxTooltipHandler.prototype.enabled
Specifies if events are handled.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
Defines the key for the autosize style.
Defines the key for the foldable style.
Graph event handler that reconnects edges and modifies control points and the edge label location.
Event handler for resizing cells.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
diff --git a/docs/js-api/files/view/mxGraphView-js.html b/docs/js-api/files/view/mxGraphView-js.html index fca6f2d5a..e4dbdf8cf 100644 --- a/docs/js-api/files/view/mxGraphView-js.html +++ b/docs/js-api/files/view/mxGraphView-js.html @@ -11,23 +11,23 @@ if (browserType) {document.write("
");if (browserV -

mxGraphView

Extends mxEventSource to implement a view for a graph.  This class is in charge of computing the absolute coordinates for the relative child geometries, the points for perimeters and edge styles and keeping them cached in mxCellStates for faster retrieval.  The states are updated whenever the model or the view state (translate, scale) changes.  The scale and translate are honoured in the bounds.

Summary
mxGraphViewExtends mxEventSource to implement a view for a graph.
Events
mxEvent.UNDOFires after the root was changed in setCurrentRoot.
mxEvent.SCALE_AND_TRANSLATEFires after the scale and translate have been changed in scaleAndTranslate.
mxEvent.SCALEFires after the scale was changed in setScale.
mxEvent.TRANSLATEFires after the translate was changed in setTranslate.
mxEvent.DOWN and mxEvent.UPFire if the current root is changed by executing an mxCurrentRootChange.
Functions
mxGraphViewConstructs a new view for the given mxGraph.
Variables
doneResourceSpecifies the resource key for the status message after a long operation.
Functions
updatingDocumentResourceSpecifies the resource key for the status message while the document is being updated.
Variables
allowEvalSpecifies if string values in cell styles should be evaluated using mxUtils.eval.
captureDocumentGestureSpecifies if a gesture should be captured when it goes outside of the graph container.
renderingSpecifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
graphReference to the enclosing mxGraph.
currentRootmxCell that acts as the root of the displayed cell hierarchy.
graphBoundsmxRectangle that caches the scales, translated bounds of the current view.
scaleSpecifies the scale.
translatemxPoint that specifies the current translation.
updateStyleSpecifies if the style should be updated in each validation step.
Functions
getGraphBoundsReturns graphBounds.
setGraphBoundsSets graphBounds.
getBoundsReturns the bounds (on the screen) for the given array of mxCells.
setCurrentRootSets and returns the current root and fires an <undo> event before calling mxGraph.sizeDidChange.
scaleAndTranslateSets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
getScaleReturns the scale.
setScaleSets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
getTranslateReturns the translate.
setTranslateSets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
refreshClears the view if currentRoot is not null and revalidates.
revalidateRevalidates the complete view with all cell states.
clearRemoves the state of the given cell and all descendants if the given cell is not the current root.
invalidateInvalidates the state of the given cell, all its descendants and connected edges.
validateFirst validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
createBackgroundPageShapeCreates and returns the shape used as the background page.
validateBackgroundValidates the background image.
getBackgroundPageBoundsReturns the bounds for the background page.
redrawBackgroundImageUpdates the bounds and redraws the background image.
validateBoundsValidates the bounds of the given parent’s child using the given parent state as the origin for the child.
updateVertexLabelOffsetUpdates the absoluteOffset of the given vertex cell state.
validatePointsValidates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
childMovedInvoked when a child state was moved as a result of late evaluation of its position.
updateFixedTerminalPointsSets the initial absolute terminal points in the given state before the edge style is computed.
updateFixedTerminalPointSets the fixed source or target terminal point on the given edge.
updatePointsUpdates the absolute points in the given state using the specified array of mxPoints as the relative points.
transformControlPointTransforms the given control point to an absolute point.
getEdgeStyleReturns the edge style function to be used to render the given edge state.
updateFloatingTerminalPointsUpdates the terminal points in the given state after the edge style was computed for the edge.
updateFloatingTerminalPointUpdates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
getTerminalPortReturns an mxCellState that represents the source or target terminal or port for the given edge.
getPerimeterPointReturns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
getRoutingCenterXReturns the x-coordinate of the center point for automatic routing.
getRoutingCenterYReturns the y-coordinate of the center point for automatic routing.
getPerimeterBoundsReturns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
getPerimeterFunctionReturns the perimeter function for the given state.
getNextPointReturns the nearest point in the list of absolute points or the center of the opposite terminal.
getVisibleTerminalReturns the nearest ancestor terminal that is visible.
updateEdgeBoundsUpdates the given state using the bounding box of the absolute points.
getPointReturns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
getRelativePointGets the relative point that describes the given, absolute label position for the given edge state.
updateEdgeLabelOffsetUpdates mxCellState.absoluteOffset for the given state.
getStateReturns the mxCellState for the given cell.
isRenderingReturns rendering.
setRenderingSets rendering.
isAllowEvalReturns allowEval.
setAllowEvalSets allowEval.
getStatesReturns <states>.
setStatesSets <states>.
getCellStatesReturns the mxCellStates for the given array of mxCells.
removeStateRemoves and returns the mxCellState for the given cell.
createStateCreates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
getCanvasReturns the DOM node that contains the background-, draw- and overlaypane.
getBackgroundPaneReturns the DOM node that represents the background layer.
getDrawPaneReturns the DOM node that represents the main drawing layer.
getOverlayPaneReturns the DOM node that represents the topmost drawing layer.
isContainerEventReturns true if the event origin is one of the drawing panes or containers of the view.
isScrollEventReturns true if the event origin is one of the scrollbars of the container in IE.
initInitializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
installListenersInstalls the required listeners in the container.
createCreates the DOM nodes for the HTML display.
createHtmlPaneCreates and returns a drawing pane in HTML (DIV).
createCreates the DOM nodes for the VML display.
createVmlPaneCreates a drawing pane in VML (group).
createCreates and returns the DOM nodes for the SVG display.
destroyDestroys the view and all its resources.
mxCurrentRootChangeAction to change the current root in a view.
Functions
mxCurrentRootChangeConstructs a change of the current root in the given view.
executeChanges the current root of the view.
+

mxGraphView

Extends mxEventSource to implement a view for a graph.  This class is in charge of computing the absolute coordinates for the relative child geometries, the points for perimeters and edge styles and keeping them cached in mxCellStates for faster retrieval.  The states are updated whenever the model or the view state (translate, scale) changes.  The scale and translate are honoured in the bounds.

Summary
mxGraphViewExtends mxEventSource to implement a view for a graph.
Events
mxEvent.UNDOFires after the root was changed in setCurrentRoot.
mxEvent.SCALE_AND_TRANSLATEFires after the scale and translate have been changed in scaleAndTranslate.
mxEvent.SCALEFires after the scale was changed in setScale.
mxEvent.TRANSLATEFires after the translate was changed in setTranslate.
mxEvent.DOWN and mxEvent.UPFire if the current root is changed by executing an mxCurrentRootChange.
Functions
mxGraphViewConstructs a new view for the given mxGraph.
Variables
doneResourceSpecifies the resource key for the status message after a long operation.
Functions
updatingDocumentResourceSpecifies the resource key for the status message while the document is being updated.
Variables
allowEvalSpecifies if string values in cell styles should be evaluated using mxUtils.eval.
captureDocumentGestureSpecifies if a gesture should be captured when it goes outside of the graph container.
renderingSpecifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
graphReference to the enclosing mxGraph.
currentRootmxCell that acts as the root of the displayed cell hierarchy.
graphBoundsmxRectangle that caches the scales, translated bounds of the current view.
scaleSpecifies the scale.
translatemxPoint that specifies the current translation.
updateStyleSpecifies if the style should be updated in each validation step.
Functions
getGraphBoundsReturns graphBounds.
setGraphBoundsSets graphBounds.
getBoundsReturns the bounds (on the screen) for the given array of mxCells.
setCurrentRootSets and returns the current root and fires an <undo> event before calling mxGraph.sizeDidChange.
scaleAndTranslateSets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
getScaleReturns the scale.
setScaleSets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
getTranslateReturns the translate.
setTranslateSets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
refreshClears the view if currentRoot is not null and revalidates.
revalidateRevalidates the complete view with all cell states.
clearRemoves the state of the given cell and all descendants if the given cell is not the current root.
invalidateInvalidates the state of the given cell, all its descendants and connected edges.
validateFirst validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
createBackgroundPageShapeCreates and returns the shape used as the background page.
validateBackgroundValidates the background image.
getBackgroundPageBoundsReturns the bounds for the background page.
redrawBackgroundImageUpdates the bounds and redraws the background image.
validateBoundsValidates the bounds of the given parent’s child using the given parent state as the origin for the child.
updateVertexLabelOffsetUpdates the absoluteOffset of the given vertex cell state.
validatePointsValidates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
childMovedInvoked when a child state was moved as a result of late evaluation of its position.
updateFixedTerminalPointsSets the initial absolute terminal points in the given state before the edge style is computed.
updateFixedTerminalPointSets the fixed source or target terminal point on the given edge.
updatePointsUpdates the absolute points in the given state using the specified array of mxPoints as the relative points.
transformControlPointTransforms the given control point to an absolute point.
getEdgeStyleReturns the edge style function to be used to render the given edge state.
updateFloatingTerminalPointsUpdates the terminal points in the given state after the edge style was computed for the edge.
updateFloatingTerminalPointUpdates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
getTerminalPortReturns an mxCellState that represents the source or target terminal or port for the given edge.
getPerimeterPointReturns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
getRoutingCenterXReturns the x-coordinate of the center point for automatic routing.
getRoutingCenterYReturns the y-coordinate of the center point for automatic routing.
getPerimeterBoundsReturns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
getPerimeterFunctionReturns the perimeter function for the given state.
getNextPointReturns the nearest point in the list of absolute points or the center of the opposite terminal.
getVisibleTerminalReturns the nearest ancestor terminal that is visible.
updateEdgeBoundsUpdates the given state using the bounding box of the absolute points.
getPointReturns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
getRelativePointGets the relative point that describes the given, absolute label position for the given edge state.
updateEdgeLabelOffsetUpdates mxCellState.absoluteOffset for the given state.
getStateReturns the mxCellState for the given cell.
isRenderingReturns rendering.
setRenderingSets rendering.
isAllowEvalReturns allowEval.
setAllowEvalSets allowEval.
getStatesReturns <states>.
setStatesSets <states>.
getCellStatesReturns the mxCellStates for the given array of mxCells.
removeStateRemoves and returns the mxCellState for the given cell.
createStateCreates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
getCanvasReturns the DOM node that contains the background-, draw- and overlaypane.
getBackgroundPaneReturns the DOM node that represents the background layer.
getDrawPaneReturns the DOM node that represents the main drawing layer.
getOverlayPaneReturns the DOM node that represents the topmost drawing layer.
isContainerEventReturns true if the event origin is one of the drawing panes or containers of the view.
isScrollEventReturns true if the event origin is one of the scrollbars of the container in IE.
initInitializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
installListenersInstalls the required listeners in the container.
createCreates the DOM nodes for the HTML display.
updateHtmlCanvasSizeUpdates the size of the HTML canvas.
createHtmlPaneCreates and returns a drawing pane in HTML (DIV).
createCreates the DOM nodes for the VML display.
createVmlPaneCreates a drawing pane in VML (group).
createCreates and returns the DOM nodes for the SVG display.
destroyDestroys the view and all its resources.
mxCurrentRootChangeAction to change the current root in a view.
Functions
mxCurrentRootChangeConstructs a change of the current root in the given view.
executeChanges the current root of the view.

Events

-

mxEvent.UNDO

Fires after the root was changed in setCurrentRoot.  The <code>edit</code> property contains the mxUndoableEdit which contains the mxCurrentRootChange.

+

mxEvent.UNDO

Fires after the root was changed in setCurrentRoot.  The <code>edit</code> property contains the mxUndoableEdit which contains the mxCurrentRootChange.

-

mxEvent.SCALE_AND_TRANSLATE

Fires after the scale and translate have been changed in scaleAndTranslate.  The <code>scale</code>, <code>previousScale</code>, <code>translate</code> and <code>previousTranslate</code> properties contain the new and previous scale and translate, respectively.

+

mxEvent.SCALE_AND_TRANSLATE

Fires after the scale and translate have been changed in scaleAndTranslate.  The <code>scale</code>, <code>previousScale</code>, <code>translate</code> and <code>previousTranslate</code> properties contain the new and previous scale and translate, respectively.

-

mxEvent.SCALE

Fires after the scale was changed in setScale.  The <code>scale</code> and <code>previousScale</code> properties contain the new and previous scale.

+

mxEvent.SCALE

Fires after the scale was changed in setScale.  The <code>scale</code> and <code>previousScale</code> properties contain the new and previous scale.

-

mxEvent.TRANSLATE

Fires after the translate was changed in setTranslate.  The <code>translate</code> and <code>previousTranslate</code> properties contain the new and previous value for translate.

+

mxEvent.TRANSLATE

Fires after the translate was changed in setTranslate.  The <code>translate</code> and <code>previousTranslate</code> properties contain the new and previous value for translate.

-

mxEvent.DOWN and mxEvent.UP

Fire if the current root is changed by executing an mxCurrentRootChange.  The event name depends on the location of the root in the cell hierarchy with respect to the current root.  The <code>root</code> and <code>previous</code> properties contain the new and previous root, respectively.

+

mxEvent.DOWN and mxEvent.UP

Fire if the current root is changed by executing an mxCurrentRootChange.  The event name depends on the location of the root in the cell hierarchy with respect to the current root.  The <code>root</code> and <code>previous</code> properties contain the new and previous root, respectively.

Functions

-

mxGraphView

function mxGraphView(graph)

Constructs a new view for the given mxGraph.

Parameters

graphReference to the enclosing mxGraph.
+

mxGraphView

function mxGraphView(graph)

Constructs a new view for the given mxGraph.

Parameters

graphReference to the enclosing mxGraph.

Variables

@@ -39,55 +39,55 @@ if (browserType) {document.write("
");if (browserV

Variables

-

allowEval

mxGraphView.prototype.allowEval

Specifies if string values in cell styles should be evaluated using mxUtils.eval.  This will only be used if the string values can’t be mapped to objects using mxStyleRegistry.  Default is false.  NOTE: Enabling this switch carries a possible security risk (see the section on security in the manual).

+

allowEval

mxGraphView.prototype.allowEval

Specifies if string values in cell styles should be evaluated using mxUtils.eval.  This will only be used if the string values can’t be mapped to objects using mxStyleRegistry.  Default is false.  NOTE: Enabling this switch carries a possible security risk (see the section on security in the manual).

captureDocumentGesture

mxGraphView.prototype.captureDocumentGesture

Specifies if a gesture should be captured when it goes outside of the graph container.  Default is true.

-

rendering

mxGraphView.prototype.rendering

Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.  Default is true.

+

rendering

mxGraphView.prototype.rendering

Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.  Default is true.

-

graph

mxGraphView.prototype.graph

Reference to the enclosing mxGraph.

+

graph

mxGraphView.prototype.graph

Reference to the enclosing mxGraph.

-

currentRoot

mxGraphView.prototype.currentRoot

mxCell that acts as the root of the displayed cell hierarchy.

+

currentRoot

mxGraphView.prototype.currentRoot

mxCell that acts as the root of the displayed cell hierarchy.

-

graphBounds

mxGraphView.prototype.graphBounds

mxRectangle that caches the scales, translated bounds of the current view.

+

graphBounds

mxGraphView.prototype.graphBounds

mxRectangle that caches the scales, translated bounds of the current view.

scale

mxGraphView.prototype.scale

Specifies the scale.  Default is 1 (100%).

-

translate

mxGraphView.prototype.translate

mxPoint that specifies the current translation.  Default is a new empty mxPoint.

+

translate

mxGraphView.prototype.translate

mxPoint that specifies the current translation.  Default is a new empty mxPoint.

updateStyle

mxGraphView.prototype.updateStyle

Specifies if the style should be updated in each validation step.  If this is false then the style is only updated if the state is created.  Default is false.

Functions

-

getGraphBounds

mxGraphView.prototype.getGraphBounds = function()

Returns graphBounds.

+

getGraphBounds

mxGraphView.prototype.getGraphBounds = function()

Returns graphBounds.

-

setGraphBounds

mxGraphView.prototype.setGraphBounds = function(value)

Sets graphBounds.

+

setGraphBounds

mxGraphView.prototype.setGraphBounds = function(value)

Sets graphBounds.

-

getBounds

mxGraphView.prototype.getBounds = function(cells)

Returns the bounds (on the screen) for the given array of mxCells.

Parameters

cellsArray of mxCells to return the bounds for.
+

getBounds

mxGraphView.prototype.getBounds = function(cells)

Returns the bounds (on the screen) for the given array of mxCells.

Parameters

cellsArray of mxCells to return the bounds for.
-

setCurrentRoot

mxGraphView.prototype.setCurrentRoot = function(root)

Sets and returns the current root and fires an <undo> event before calling mxGraph.sizeDidChange.

Parameters

rootmxCell that specifies the root of the displayed cell hierarchy.
+

setCurrentRoot

mxGraphView.prototype.setCurrentRoot = function(root)

Sets and returns the current root and fires an <undo> event before calling mxGraph.sizeDidChange.

Parameters

rootmxCell that specifies the root of the displayed cell hierarchy.
-

scaleAndTranslate

mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)

Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.

Parameters

scaleDecimal value that specifies the new scale (1 is 100%).
dxX-coordinate of the translation.
dyY-coordinate of the translation.
+

scaleAndTranslate

mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)

Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.

Parameters

scaleDecimal value that specifies the new scale (1 is 100%).
dxX-coordinate of the translation.
dyY-coordinate of the translation.
-

getScale

mxGraphView.prototype.getScale = function()

Returns the scale.

+

getScale

mxGraphView.prototype.getScale = function()

Returns the scale.

-

setScale

mxGraphView.prototype.setScale = function(value)

Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.

Parameters

valueDecimal value that specifies the new scale (1 is 100%).
+

setScale

mxGraphView.prototype.setScale = function(value)

Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.

Parameters

valueDecimal value that specifies the new scale (1 is 100%).
-

getTranslate

mxGraphView.prototype.getTranslate = function()

Returns the translate.

+

getTranslate

mxGraphView.prototype.getTranslate = function()

Returns the translate.

-

setTranslate

mxGraphView.prototype.setTranslate = function(dx,
dy)

Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.  The translation is the negative of the origin.

Parameters

dxX-coordinate of the translation.
dyY-coordinate of the translation.
+

setTranslate

mxGraphView.prototype.setTranslate = function(dx,
dy)

Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.  The translation is the negative of the origin.

Parameters

dxX-coordinate of the translation.
dyY-coordinate of the translation.
-

refresh

mxGraphView.prototype.refresh = function()

Clears the view if currentRoot is not null and revalidates.

+

refresh

mxGraphView.prototype.refresh = function()

Clears the view if currentRoot is not null and revalidates.

revalidate

mxGraphView.prototype.revalidate = function()

Revalidates the complete view with all cell states.

-

clear

mxGraphView.prototype.clear = function(cell,
force,
recurse)

Removes the state of the given cell and all descendants if the given cell is not the current root.

Parameters

cellOptional mxCell for which the state should be removed.  Default is the root of the model.
forceBoolean indicating if the current root should be ignored for recursion.
+

clear

mxGraphView.prototype.clear = function(cell,
force,
recurse)

Removes the state of the given cell and all descendants if the given cell is not the current root.

Parameters

cellOptional mxCell for which the state should be removed.  Default is the root of the model.
forceBoolean indicating if the current root should be ignored for recursion.
-

invalidate

mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)

Invalidates the state of the given cell, all its descendants and connected edges.

Parameters

cellOptional mxCell to be invalidated.  Default is the root of the model.
+

invalidate

mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)

Invalidates the state of the given cell, all its descendants and connected edges.

Parameters

cellOptional mxCell to be invalidated.  Default is the root of the model.
-

validate

mxGraphView.prototype.validate = function(cell)

First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.  Finally the background is validated using validateBackground.

Parameters

cellOptional mxCell to be used as the root of the validation.  Default is currentRoot or the root of the model.
+

validate

mxGraphView.prototype.validate = function(cell)

First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.  Finally the background is validated using validateBackground.

Parameters

cellOptional mxCell to be used as the root of the validation.  Default is currentRoot or the root of the model.
-

createBackgroundPageShape

mxGraphView.prototype.createBackgroundPageShape = function(bounds)

Creates and returns the shape used as the background page.

Parameters

boundsmxRectangle that represents the bounds of the shape.
+

createBackgroundPageShape

mxGraphView.prototype.createBackgroundPageShape = function(bounds)

Creates and returns the shape used as the background page.

Parameters

boundsmxRectangle that represents the bounds of the shape.

validateBackground

mxGraphView.prototype.validateBackground = function()

Validates the background image.

@@ -101,39 +101,39 @@ if (browserType) {document.write("
");if (browserV backgroundImage.bounds.height = bg.height; backgroundImage.redraw(); -};

Parameters

backgroundImagemxImageShape that represents the background image.
bgmxImage that specifies the image and its dimensions.
+};

Parameters

backgroundImagemxImageShape that represents the background image.
bgmxImage that specifies the image and its dimensions.
-

validateBounds

mxGraphView.prototype.validateBounds = function(parentState,
cell)

Validates the bounds of the given parent’s child using the given parent state as the origin for the child.  The validation is carried out recursively for all non-collapsed descendants.

Parameters

parentStatemxCellState for the given parent.
cellmxCell for which the bounds in the state should be updated.
+

validateBounds

mxGraphView.prototype.validateBounds = function(parentState,
cell)

Validates the bounds of the given parent’s child using the given parent state as the origin for the child.  The validation is carried out recursively for all non-collapsed descendants.

Parameters

parentStatemxCellState for the given parent.
cellmxCell for which the bounds in the state should be updated.
-

updateVertexLabelOffset

mxGraphView.prototype.updateVertexLabelOffset = function(state)

Updates the absoluteOffset of the given vertex cell state.  This takes into account the label position styles.

Parameters

statemxCellState whose absolute offset should be updated.
+

updateVertexLabelOffset

mxGraphView.prototype.updateVertexLabelOffset = function(state)

Updates the absoluteOffset of the given vertex cell state.  This takes into account the label position styles.

Parameters

statemxCellState whose absolute offset should be updated.
-

validatePoints

mxGraphView.prototype.validatePoints = function(parentState,
cell)

Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.

Parameters

parentStatemxCellState for the parent cell.
cellmxCell whose points in the state should be updated.
+

validatePoints

mxGraphView.prototype.validatePoints = function(parentState,
cell)

Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.

Parameters

parentStatemxCellState for the parent cell.
cellmxCell whose points in the state should be updated.
-

childMoved

mxGraphView.prototype.childMoved = function(parent,
child)

Invoked when a child state was moved as a result of late evaluation of its position.  This is invoked for relative edge children whose position can only be determined after the points of the parent edge are updated in validatePoints, and validates the bounds of all descendants of the child using validateBounds.

Parameters

parentmxCellState that represents the parent state.
childmxCellState that represents the child state.
+

childMoved

mxGraphView.prototype.childMoved = function(parent,
child)

Invoked when a child state was moved as a result of late evaluation of its position.  This is invoked for relative edge children whose position can only be determined after the points of the parent edge are updated in validatePoints, and validates the bounds of all descendants of the child using validateBounds.

Parameters

parentmxCellState that represents the parent state.
childmxCellState that represents the child state.
-

updateFixedTerminalPoints

mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)

Sets the initial absolute terminal points in the given state before the edge style is computed.

Parameters

edgemxCellState whose initial terminal points should be updated.
sourcemxCellState which represents the source terminal.
targetmxCellState which represents the target terminal.
+

updateFixedTerminalPoints

mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)

Sets the initial absolute terminal points in the given state before the edge style is computed.

Parameters

edgemxCellState whose initial terminal points should be updated.
sourcemxCellState which represents the source terminal.
targetmxCellState which represents the target terminal.
-

updateFixedTerminalPoint

mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)

Sets the fixed source or target terminal point on the given edge.

Parameters

edgemxCellState whose terminal point should be updated.
terminalmxCellState which represents the actual terminal.
sourceBoolean that specifies if the terminal is the source.
constraintmxConnectionConstraint that specifies the connection.
+

updateFixedTerminalPoint

mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)

Sets the fixed source or target terminal point on the given edge.

Parameters

edgemxCellState whose terminal point should be updated.
terminalmxCellState which represents the actual terminal.
sourceBoolean that specifies if the terminal is the source.
constraintmxConnectionConstraint that specifies the connection.
-

updatePoints

mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)

Updates the absolute points in the given state using the specified array of mxPoints as the relative points.

Parameters

edgemxCellState whose absolute points should be updated.
pointsArray of mxPoints that constitute the relative points.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.
+

updatePoints

mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)

Updates the absolute points in the given state using the specified array of mxPoints as the relative points.

Parameters

edgemxCellState whose absolute points should be updated.
pointsArray of mxPoints that constitute the relative points.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.

transformControlPoint

mxGraphView.prototype.transformControlPoint = function(state,
pt)

Transforms the given control point to an absolute point.

getEdgeStyle

mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)

Returns the edge style function to be used to render the given edge state.

-

updateFloatingTerminalPoints

mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)

Updates the terminal points in the given state after the edge style was computed for the edge.

Parameters

statemxCellState whose terminal points should be updated.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.
+

updateFloatingTerminalPoints

mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)

Updates the terminal points in the given state after the edge style was computed for the edge.

Parameters

statemxCellState whose terminal points should be updated.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.
-

updateFloatingTerminalPoint

mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)

Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.

Parameters

edgemxCellState whose terminal point should be updated.
startmxCellState for the terminal on “this” side of the edge.
endmxCellState for the terminal on the other side of the edge.
sourceBoolean indicating if start is the source terminal state.
+

updateFloatingTerminalPoint

mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)

Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.

Parameters

edgemxCellState whose terminal point should be updated.
startmxCellState for the terminal on “this” side of the edge.
endmxCellState for the terminal on the other side of the edge.
sourceBoolean indicating if start is the source terminal state.
-

getTerminalPort

mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)

Returns an mxCellState that represents the source or target terminal or port for the given edge.

Parameters

statemxCellState that represents the state of the edge.
terminalmxCellState that represents the terminal.
sourceBoolean indicating if the given terminal is the source terminal.
+

getTerminalPort

mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)

Returns an mxCellState that represents the source or target terminal or port for the given edge.

Parameters

statemxCellState that represents the state of the edge.
terminalmxCellState that represents the terminal.
sourceBoolean indicating if the given terminal is the source terminal.
-

getPerimeterPoint

mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)

Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.

Parameters

terminalmxCellState for the source or target terminal.
nextmxPoint that lies outside of the given terminal.
orthogonalBoolean that specifies if the orthogonal projection onto the perimeter should be returned.  If this is false then the intersection of the perimeter and the line between the next and the center point is returned.
borderOptional border between the perimeter and the shape.
+

getPerimeterPoint

mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)

Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.

Parameters

terminalmxCellState for the source or target terminal.
nextmxPoint that lies outside of the given terminal.
orthogonalBoolean that specifies if the orthogonal projection onto the perimeter should be returned.  If this is false then the intersection of the perimeter and the line between the next and the center point is returned.
borderOptional border between the perimeter and the shape.

getRoutingCenterX

mxGraphView.prototype.getRoutingCenterX = function (state)

Returns the x-coordinate of the center point for automatic routing.

getRoutingCenterY

mxGraphView.prototype.getRoutingCenterY = function (state)

Returns the y-coordinate of the center point for automatic routing.

-

getPerimeterBounds

mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)

Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.

If you have a model where each terminal has a relative child that should act as the graphical endpoint for a connection from/to the terminal, then this method can be replaced as follows:

var oldGetPerimeterBounds = mxGraphView.prototype.getPerimeterBounds;
+

getPerimeterBounds

mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)

Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.

If you have a model where each terminal has a relative child that should act as the graphical endpoint for a connection from/to the terminal, then this method can be replaced as follows:

var oldGetPerimeterBounds = mxGraphView.prototype.getPerimeterBounds;
 mxGraphView.prototype.getPerimeterBounds = function(terminal, edge, isSource)
 {
   var model = this.graph.getModel();
@@ -157,41 +157,41 @@ mxGraphView.prototype.getPerimeterBounds = function(terminal, edge, isSource)
   }
 
   return oldGetPerimeterBounds.apply(this, arguments);
-};

Parameters

terminalmxCellState that represents the terminal.
borderNumber that adds a border between the shape and the perimeter.
+};

Parameters

terminalmxCellState that represents the terminal.
borderNumber that adds a border between the shape and the perimeter.

getPerimeterFunction

mxGraphView.prototype.getPerimeterFunction = function(state)

Returns the perimeter function for the given state.

-

getNextPoint

mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)

Returns the nearest point in the list of absolute points or the center of the opposite terminal.

Parameters

edgemxCellState that represents the edge.
oppositemxCellState that represents the opposite terminal.
sourceBoolean indicating if the next point for the source or target should be returned.
+

getNextPoint

mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)

Returns the nearest point in the list of absolute points or the center of the opposite terminal.

Parameters

edgemxCellState that represents the edge.
oppositemxCellState that represents the opposite terminal.
sourceBoolean indicating if the next point for the source or target should be returned.
-

getVisibleTerminal

mxGraphView.prototype.getVisibleTerminal = function(edge,
source)

Returns the nearest ancestor terminal that is visible.  The edge appears to be connected to this terminal on the display.  The result of this method is cached in mxCellState.getVisibleTerminalState.

Parameters

edgemxCell whose visible terminal should be returned.
sourceBoolean that specifies if the source or target terminal should be returned.
+

getVisibleTerminal

mxGraphView.prototype.getVisibleTerminal = function(edge,
source)

Returns the nearest ancestor terminal that is visible.  The edge appears to be connected to this terminal on the display.  The result of this method is cached in mxCellState.getVisibleTerminalState.

Parameters

edgemxCell whose visible terminal should be returned.
sourceBoolean that specifies if the source or target terminal should be returned.
-

updateEdgeBounds

mxGraphView.prototype.updateEdgeBounds = function(state)

Updates the given state using the bounding box of the absolute points.  Also updates mxCellState.terminalDistance, mxCellState.length and mxCellState.segments.

Parameters

statemxCellState whose bounds should be updated.
+

updateEdgeBounds

mxGraphView.prototype.updateEdgeBounds = function(state)

Updates the given state using the bounding box of the absolute points.  Also updates mxCellState.terminalDistance, mxCellState.length and mxCellState.segments.

Parameters

statemxCellState whose bounds should be updated.
-

getPoint

mxGraphView.prototype.getPoint = function(state,
geometry)

Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.  The edge is represented by the given mxCellState.

Parameters

statemxCellState that represents the state of the parent edge.
geometrymxGeometry that represents the relative location.
+

getPoint

mxGraphView.prototype.getPoint = function(state,
geometry)

Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.  The edge is represented by the given mxCellState.

Parameters

statemxCellState that represents the state of the parent edge.
geometrymxGeometry that represents the relative location.
-

getRelativePoint

mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)

Gets the relative point that describes the given, absolute label position for the given edge state.

Parameters

statemxCellState that represents the state of the parent edge.
xSpecifies the x-coordinate of the absolute label location.
ySpecifies the y-coordinate of the absolute label location.
+

getRelativePoint

mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)

Gets the relative point that describes the given, absolute label position for the given edge state.

Parameters

statemxCellState that represents the state of the parent edge.
xSpecifies the x-coordinate of the absolute label location.
ySpecifies the y-coordinate of the absolute label location.
-

updateEdgeLabelOffset

mxGraphView.prototype.updateEdgeLabelOffset = function(state)

Updates mxCellState.absoluteOffset for the given state.  The absolute offset is normally used for the position of the edge label.  Is is calculated from the geometry as an absolute offset from the center between the two endpoints if the geometry is absolute, or as the relative distance between the center along the line and the absolute orthogonal distance if the geometry is relative.

Parameters

statemxCellState whose absolute offset should be updated.
+

updateEdgeLabelOffset

mxGraphView.prototype.updateEdgeLabelOffset = function(state)

Updates mxCellState.absoluteOffset for the given state.  The absolute offset is normally used for the position of the edge label.  Is is calculated from the geometry as an absolute offset from the center between the two endpoints if the geometry is absolute, or as the relative distance between the center along the line and the absolute orthogonal distance if the geometry is relative.

Parameters

statemxCellState whose absolute offset should be updated.
-

getState

mxGraphView.prototype.getState = function(cell,
create)

Returns the mxCellState for the given cell.  If create is true, then the state is created if it does not yet exist.

Parameters

cellmxCell for which the mxCellState should be returned.
createOptional boolean indicating if a new state should be created if it does not yet exist.  Default is false.
+

getState

mxGraphView.prototype.getState = function(cell,
create)

Returns the mxCellState for the given cell.  If create is true, then the state is created if it does not yet exist.

Parameters

cellmxCell for which the mxCellState should be returned.
createOptional boolean indicating if a new state should be created if it does not yet exist.  Default is false.
-

isRendering

mxGraphView.prototype.isRendering = function()

Returns rendering.

+

isRendering

mxGraphView.prototype.isRendering = function()

Returns rendering.

-

setRendering

mxGraphView.prototype.setRendering = function(value)

Sets rendering.

+

setRendering

mxGraphView.prototype.setRendering = function(value)

Sets rendering.

-

isAllowEval

mxGraphView.prototype.isAllowEval = function()

Returns allowEval.

+

isAllowEval

mxGraphView.prototype.isAllowEval = function()

Returns allowEval.

-

setAllowEval

mxGraphView.prototype.setAllowEval = function(value)

Sets allowEval.

+

setAllowEval

mxGraphView.prototype.setAllowEval = function(value)

Sets allowEval.

getStates

mxGraphView.prototype.getStates = function()

Returns <states>.

setStates

mxGraphView.prototype.setStates = function(value)

Sets <states>.

-

getCellStates

mxGraphView.prototype.getCellStates = function(cells)

Returns the mxCellStates for the given array of mxCells.  The array contains all states that are not null, that is, the returned array may have less elements than the given array.  If no argument is given, then this returns <states>.

+

getCellStates

mxGraphView.prototype.getCellStates = function(cells)

Returns the mxCellStates for the given array of mxCells.  The array contains all states that are not null, that is, the returned array may have less elements than the given array.  If no argument is given, then this returns <states>.

-

removeState

mxGraphView.prototype.removeState = function(cell)

Removes and returns the mxCellState for the given cell.

Parameters

cellmxCell for which the mxCellState should be removed.
+

removeState

mxGraphView.prototype.removeState = function(cell)

Removes and returns the mxCellState for the given cell.

Parameters

cellmxCell for which the mxCellState should be removed.
-

createState

mxGraphView.prototype.createState = function(cell)

Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.

Parameters

cellmxCell for which a new mxCellState should be created.
+

createState

mxGraphView.prototype.createState = function(cell)

Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.

Parameters

cellmxCell for which a new mxCellState should be created.

getCanvas

mxGraphView.prototype.getCanvas = function()

Returns the DOM node that contains the background-, draw- and overlaypane.

@@ -205,12 +205,14 @@ mxGraphView.prototype.getPerimeterBounds = function(terminal, edge, isSource)

isScrollEvent

mxGraphView.prototype.isScrollEvent = function(evt)

Returns true if the event origin is one of the scrollbars of the container in IE.  Such events are ignored.

-

init

mxGraphView.prototype.init = function()

Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.

+

init

mxGraphView.prototype.init = function()

Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.

installListeners

mxGraphView.prototype.installListeners = function()

Installs the required listeners in the container.

create

mxGraphView.prototype.createHtml = function()

Creates the DOM nodes for the HTML display.

+

updateHtmlCanvasSize

mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)

Updates the size of the HTML canvas.

+

createHtmlPane

mxGraphView.prototype.createHtmlPane = function(width,
height)

Creates and returns a drawing pane in HTML (DIV).

create

mxGraphView.prototype.createVml = function()

Creates the DOM nodes for the VML display.

@@ -221,7 +223,7 @@ mxGraphView.prototype.getPerimeterBounds = function(terminal, edge, isSource)

destroy

mxGraphView.prototype.destroy = function()

Destroys the view and all its resources.

-

mxCurrentRootChange

Action to change the current root in a view.

Summary
Functions
mxCurrentRootChangeConstructs a change of the current root in the given view.
executeChanges the current root of the view.
+

mxCurrentRootChange

Action to change the current root in a view.

Summary
Functions
mxCurrentRootChangeConstructs a change of the current root in the given view.
executeChanges the current root of the view.

Functions

@@ -243,7 +245,7 @@ HideAllBut([11], 13);// --> -
Base class for objects that dispatch named events.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
Action to change the current root in a view.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphView.prototype.allowEval
Specifies if string values in cell styles should be evaluated using mxUtils.eval.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxGraphView.prototype.captureDocumentGesture
Specifies if a gesture should be captured when it goes outside of the graph container.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Renders cells into a document object model.
mxGraphView.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
Cells are the elements of the graph model.
mxGraphView.prototype.graphBounds
mxRectangle that caches the scales, translated bounds of the current view.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
mxGraphView.prototype.scale
Specifies the scale.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
Implements a 2-dimensional vector with double precision coordinates.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxGraphView.prototype.getScale = function()
Returns the scale.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)
Invalidates the state of the given cell, all its descendants and connected edges.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
Represents the current state of a cell in a given mxGraphView.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
Extends mxRectangle to represent the geometry of a cell.
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxCellState.prototype.absoluteOffset
mxPoint that holds the absolute offset.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraphView.prototype.getStates = function()
Returns states.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxCellRenderer.prototype.initialize = function(state,
rendering)
Initializes the display for the given cell state.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
mxCurrentRootChange.prototype.execute = function()
Changes the current root of the view.
Implements a composite undoable edit.
Singleton class that acts as a global converter from string to object values in a style.
Extends mxShape to implement an image shape.
Encapsulates the URL, width and height of an image.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxCellState.prototype.length
Caches the length of an edge.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
+
Base class for objects that dispatch named events.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
Action to change the current root in a view.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
Extends mxEventSource to implement a graph component for the browser.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphView.prototype.allowEval
Specifies if string values in cell styles should be evaluated using mxUtils.eval.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxGraphView.prototype.captureDocumentGesture
Specifies if a gesture should be captured when it goes outside of the graph container.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Renders cells into a document object model.
mxGraphView.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
Cells are the elements of the graph model.
mxGraphView.prototype.graphBounds
mxRectangle that caches the scales, translated bounds of the current view.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
mxGraphView.prototype.scale
Specifies the scale.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
Implements a 2-dimensional vector with double precision coordinates.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxGraphView.prototype.getScale = function()
Returns the scale.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)
Invalidates the state of the given cell, all its descendants and connected edges.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
Represents the current state of a cell in a given mxGraphView.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
Extends mxRectangle to represent the geometry of a cell.
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxCellState.prototype.absoluteOffset
mxPoint that holds the absolute offset.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraphView.prototype.getStates = function()
Returns states.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxCellRenderer.prototype.initialize = function(state,
rendering)
Initializes the display for the given cell state.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
mxCurrentRootChange.prototype.execute = function()
Changes the current root of the view.
Implements a composite undoable edit.
Singleton class that acts as a global converter from string to object values in a style.
Extends mxShape to implement an image shape.
Encapsulates the URL, width and height of an image.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxCellState.prototype.length
Caches the length of an edge.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
diff --git a/docs/js-api/index/Functions10.html b/docs/js-api/index/Functions10.html index 280202301..08468c286 100644 --- a/docs/js-api/index/Functions10.html +++ b/docs/js-api/index/Functions10.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 join, mxCompactTreeLayout
K
 keyDown, mxKeyHandler
L
 labelChanged, mxGraph
 layeringStage, mxHierarchicalLayout
 layout
 layoutCells, mxLayoutManager
 layoutLeaf, mxCompactTreeLayout
 leave, mxLog
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 load, mxUtils
 loadInto, mxUtils
 localEdgeProcessing
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 join, mxCompactTreeLayout
K
 keyDown, mxKeyHandler
L
 labelChanged, mxGraph
 layeringStage, mxHierarchicalLayout
 layout
 layoutCells, mxLayoutManager
 layoutLeaf, mxCompactTreeLayout
 leave, mxLog
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 load, mxUtils
 loadInto, mxUtils
 localEdgeProcessing
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
-
mxCompactTreeLayout.prototype.join = function(node)
+
mxCompactTreeLayout.prototype.join = function(node)
-
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
+
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
-
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxPath.prototype.lineTo = function(x,
y)
Draws a straight line from the current poin to (x, y).
lineTo: function(x,
y)
Adds a line to the current path.
lineTo: function(x,
y)
Adds a line to the current path.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
+
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxPath.prototype.lineTo = function(x,
y)
Draws a straight line from the current poin to (x, y).
lineTo: function(x,
y)
Adds a line to the current path.
lineTo: function(x,
y)
Adds a line to the current path.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
diff --git a/docs/js-api/index/Functions11.html b/docs/js-api/index/Functions11.html index 31dc88f6f..0726f9868 100644 --- a/docs/js-api/index/Functions11.html +++ b/docs/js-api/index/Functions11.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 makeDraggable, mxUtils
 map, mxDictionary
 mark
 markCell, mxCellMarker
 MedianCellSorter, MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue, mxMedianHybridCrossingReduction
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 minNode, mxCoordinateAssignment
 minPath, mxCoordinateAssignment
 mod, mxUtils
 mouseDown
 mouseMove
 mouseUp
 move, mxGuide
 moveCell
 moveCells
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveState, mxCellStatePreview
 moveTo
 mxActor, mxActor
 mxAnimation, mxAnimation
 mxArrow, mxArrow
 mxAutoSaveManager, mxAutoSaveManager
 mxCell, mxCell
 mxCellAttributeChange, mxCellAttributeChange
 mxCellEditor, mxCellEditor
 mxCellHighlight, mxCellHighlight
 mxCellMarker, mxCellMarker
 mxCellOverlay, mxCellOverlay
 mxCellRenderer, mxCellRenderer
 mxCellState, mxCellState
 mxCellStatePreview, mxCellStatePreview
 mxCellTracker, mxCellTracker
 mxChildChange, mxChildChange
 mxCircleLayout, mxCircleLayout
 mxCloud, mxCloud
 mxCodec, mxCodec
 mxCollapseChange, mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout, mxCompositeLayout
 mxConnectionConstraint, mxConnectionConstraint
 mxConnectionHandler, mxConnectionHandler
 mxConnector, mxConnector
 mxConstraintHandler, mxConstraintHandler
 mxCoordinateAssignment, mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder, mxCylinder
 mxDefaultKeyHandler, mxDefaultKeyHandler
 mxDefaultPopupMenu, mxDefaultPopupMenu
 mxDefaultToolbar, mxDefaultToolbar
 mxDivResizer, mxDivResizer
 mxDoubleEllipse, mxDoubleEllipse
 mxDragSource, mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout, mxEdgeLabelLayout
 mxEditor, mxEditor
 mxEllipse, mxEllipse
 mxEventObject, mxEventObject
 mxEventSource
 mxForm, mxForm
 mxGenericChangeCodec, mxGenericChangeCodec
 mxGeometry, mxGeometry
 mxGeometryChange, mxGeometryChange
 mxGraph, mxGraph
 mxGraphAbstractHierarchyCell, mxGraphAbstractHierarchyCell
 mxGraphHandler, mxGraphHandler
 mxGraphHierarchyEdge, mxGraphHierarchyEdge
 mxGraphHierarchyModel, mxGraphHierarchyModel
 mxGraphHierarchyNode, mxGraphHierarchyNode
 mxGraphLayout, mxGraphLayout
 mxGraphModel, mxGraphModel
 mxGraphSelectionModel, mxGraphSelectionModel
 mxGraphView, mxGraphView
 mxGuide, mxGuide
 mxHexagon, mxHexagon
 mxHierarchicalLayout, mxHierarchicalLayout
 mxHierarchicalLayoutStage, mxHierarchicalLayoutStage
 mxImage, mxImage
 mxImageExport, mxImageExport
 mxImageShape, mxImageShape
 mxKeyHandler, mxKeyHandler
 mxLabel, mxLabel
 mxLayoutManager, mxLayoutManager
 mxLine, mxLine
 mxMedianHybridCrossingReduction, mxMedianHybridCrossingReduction
 mxMinimumCycleRemover, mxMinimumCycleRemover
 mxMorphing, mxMorphing
 mxMouseEvent, mxMouseEvent
 mxMultiplicity, mxMultiplicity
 mxObjectCodec, mxObjectCodec
 mxOutline, mxOutline
 mxPanningHandler, mxPanningHandler
 mxPartitionLayout, mxPartitionLayout
 mxPath, mxPath
 mxPoint, mxPoint
 mxPolyline, mxPolyline
 mxPopupMenu, mxPopupMenu
 mxPrintPreview, mxPrintPreview
 mxRectangle
 mxRectangleShape, mxRectangleShape
 mxRhombus, mxRhombus
 mxRootChange, mxRootChange
 mxRubberband, mxRubberband
 mxSession, mxSession
 mxShape, mxShape
 mxSpaceManager, mxSpaceManager
 mxStackLayout, mxStackLayout
 mxStencilShape
 mxStyleChange, mxStyleChange
 mxStylesheet, mxStylesheet
 mxSvgCanvas2D, mxSvgCanvas2D
 mxSwimlane, mxSwimlane
 mxSwimlaneManager, mxSwimlaneManager
 mxTerminalChange, mxTerminalChange
 mxText, mxText
 mxToolbar, mxToolbar
 mxTooltipHandler, mxTooltipHandler
 mxTriangle, mxTriangle
 mxUndoableEdit, mxUndoableEdit
 mxUndoManager, mxUndoManager
 mxValueChange, mxValueChange
 mxVertexHandler, mxVertexHandler
 mxVisibleChange, mxVisibleChange
 mxXmlCanvas2D, mxXmlCanvas2D
 mxXmlRequest, mxXmlRequest
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 makeDraggable, mxUtils
 map, mxDictionary
 mark
 markCell, mxCellMarker
 MedianCellSorter, MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue, mxMedianHybridCrossingReduction
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 minNode, mxCoordinateAssignment
 minPath, mxCoordinateAssignment
 mod, mxUtils
 mouseDown
 mouseMove
 mouseUp
 move, mxGuide
 moveCell
 moveCells
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveState, mxCellStatePreview
 moveTo
 mxActor, mxActor
 mxAnimation, mxAnimation
 mxArrow, mxArrow
 mxAutoSaveManager, mxAutoSaveManager
 mxCell, mxCell
 mxCellAttributeChange, mxCellAttributeChange
 mxCellEditor, mxCellEditor
 mxCellHighlight, mxCellHighlight
 mxCellMarker, mxCellMarker
 mxCellOverlay, mxCellOverlay
 mxCellRenderer, mxCellRenderer
 mxCellState, mxCellState
 mxCellStatePreview, mxCellStatePreview
 mxCellTracker, mxCellTracker
 mxChildChange, mxChildChange
 mxCircleLayout, mxCircleLayout
 mxCloud, mxCloud
 mxCodec, mxCodec
 mxCollapseChange, mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout, mxCompositeLayout
 mxConnectionConstraint, mxConnectionConstraint
 mxConnectionHandler, mxConnectionHandler
 mxConnector, mxConnector
 mxConstraintHandler, mxConstraintHandler
 mxCoordinateAssignment, mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder, mxCylinder
 mxDefaultKeyHandler, mxDefaultKeyHandler
 mxDefaultPopupMenu, mxDefaultPopupMenu
 mxDefaultToolbar, mxDefaultToolbar
 mxDivResizer, mxDivResizer
 mxDoubleEllipse, mxDoubleEllipse
 mxDragSource, mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout, mxEdgeLabelLayout
 mxEditor, mxEditor
 mxEllipse, mxEllipse
 mxEventObject, mxEventObject
 mxEventSource
 mxForm, mxForm
 mxGenericChangeCodec, mxGenericChangeCodec
 mxGeometry, mxGeometry
 mxGeometryChange, mxGeometryChange
 mxGraph, mxGraph
 mxGraphAbstractHierarchyCell, mxGraphAbstractHierarchyCell
 mxGraphHandler, mxGraphHandler
 mxGraphHierarchyEdge, mxGraphHierarchyEdge
 mxGraphHierarchyModel, mxGraphHierarchyModel
 mxGraphHierarchyNode, mxGraphHierarchyNode
 mxGraphLayout, mxGraphLayout
 mxGraphModel, mxGraphModel
 mxGraphSelectionModel, mxGraphSelectionModel
 mxGraphView, mxGraphView
 mxGuide, mxGuide
 mxHexagon, mxHexagon
 mxHierarchicalLayout, mxHierarchicalLayout
 mxHierarchicalLayoutStage, mxHierarchicalLayoutStage
 mxImage, mxImage
 mxImageExport, mxImageExport
 mxImageShape, mxImageShape
 mxKeyHandler, mxKeyHandler
 mxLabel, mxLabel
 mxLayoutManager, mxLayoutManager
 mxLine, mxLine
 mxMedianHybridCrossingReduction, mxMedianHybridCrossingReduction
 mxMinimumCycleRemover, mxMinimumCycleRemover
 mxMorphing, mxMorphing
 mxMouseEvent, mxMouseEvent
 mxMultiplicity, mxMultiplicity
 mxObjectCodec, mxObjectCodec
 mxOutline, mxOutline
 mxPanningHandler, mxPanningHandler
 mxPartitionLayout, mxPartitionLayout
 mxPath, mxPath
 mxPoint, mxPoint
 mxPolyline, mxPolyline
 mxPopupMenu, mxPopupMenu
 mxPrintPreview, mxPrintPreview
 mxRectangle
 mxRectangleShape, mxRectangleShape
 mxRhombus, mxRhombus
 mxRootChange, mxRootChange
 mxRubberband, mxRubberband
 mxSession, mxSession
 mxShape, mxShape
 mxSpaceManager, mxSpaceManager
 mxStackLayout, mxStackLayout
 mxStencilShape
 mxStyleChange, mxStyleChange
 mxStylesheet, mxStylesheet
 mxSvgCanvas2D, mxSvgCanvas2D
 mxSwimlane, mxSwimlane
 mxSwimlaneManager, mxSwimlaneManager
 mxTerminalChange, mxTerminalChange
 mxText, mxText
 mxToolbar, mxToolbar
 mxTooltipHandler, mxTooltipHandler
 mxTriangle, mxTriangle
 mxUndoableEdit, mxUndoableEdit
 mxUndoManager, mxUndoManager
 mxValueChange, mxValueChange
 mxVertexHandler, mxVertexHandler
 mxVisibleChange, mxVisibleChange
 mxXmlCanvas2D, mxXmlCanvas2D
 mxXmlRequest, mxXmlRequest
-
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
Stores the (key, value) pairs in this dictionary.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxPath.prototype.moveTo = function(x,
y)
Moves the cursor to (x, y).
moveTo: function(x,
y)
Moves the current path the given coordinates.
moveTo: function(x,
y)
Moves the current path the given coordinates.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
function mxAnimation(delay)
Constructs an animation.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
function mxCellHighlight(graph,
highlightColor,
strokeWidth)
Constructs a cell highlight.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
function mxEditor(config)
Constructs a new editor.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxEventObject(name)
Constructs a new event object with the specified name.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
function mxForm(className)
Creates a HTML table using the specified classname.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
deterministic,
tightenToSource,
scanRanksFromSinks)
Creates an internal ordered graph model using the vertices passed in.
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
function mxGraphModel(root)
Constructs a new graph model.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
function mxGuide(graph,
states)
Constructs a new guide object.
function mxHexagon()
Constructs a new hexagon shape.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
function mxImage(src,
width,
height)
Constructs a new image.
function mxImageExport()
Constructs a new image export.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
function mxPath(format)
Constructs a path for the given format, which is one of svg or vml.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Constructs an event handler that creates a popupmenu.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
function mxShape()
Constructs a new shape.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
function mxStencilShape(stencil)
Constructs a new generic shape.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
var mxSvgCanvas2D = function(root,
styleEnabled)
Constructs an SVG canvas.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
function mxToolbar(container)
Constructs a toolbar in the specified container.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
function mxTriangle()
Constructs a new triangle shape.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
var mxXmlCanvas2D = function(root)
Constructs a XML canvas.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
+
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
Stores the (key, value) pairs in this dictionary.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxPath.prototype.moveTo = function(x,
y)
Moves the cursor to (x, y).
moveTo: function(x,
y)
Moves the current path the given coordinates.
moveTo: function(x,
y)
Moves the current path the given coordinates.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
function mxAnimation(delay)
Constructs an animation.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
function mxCellHighlight(graph,
highlightColor,
strokeWidth)
Constructs a cell highlight.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
function mxEditor(config)
Constructs a new editor.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
function mxEventObject(name)
Constructs a new event object with the specified name.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
function mxForm(className)
Creates a HTML table using the specified classname.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
deterministic,
tightenToSource,
scanRanksFromSinks)
Creates an internal ordered graph model using the vertices passed in.
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
function mxGraphModel(root)
Constructs a new graph model.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
function mxGuide(graph,
states)
Constructs a new guide object.
function mxHexagon()
Constructs a new hexagon shape.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
function mxImage(src,
width,
height)
Constructs a new image.
function mxImageExport()
Constructs a new image export.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
function mxPath(format)
Constructs a path for the given format, which is one of svg or vml.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Constructs an event handler that creates a popupmenu.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
function mxShape()
Constructs a new shape.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
function mxStencilShape(stencil)
Constructs a new generic shape.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
var mxSvgCanvas2D = function(root,
styleEnabled)
Constructs an SVG canvas.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
function mxToolbar(container)
Constructs a toolbar in the specified container.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
function mxTriangle()
Constructs a new triangle shape.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
var mxXmlCanvas2D = function(root)
Constructs a XML canvas.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
diff --git a/docs/js-api/index/Functions12.html b/docs/js-api/index/Functions12.html index 11b2a17b6..e1624b0f7 100644 --- a/docs/js-api/index/Functions12.html +++ b/docs/js-api/index/Functions12.html @@ -11,21 +11,21 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 notify
O
 offset, mxCompactTreeLayout
 onEncode, mxRootChangeCodec
 onInit
 open
 order, mxCellRenderer
 orderCells, mxGraph
 orderEdge, mxCellRenderer
 OrthConnector, mxEdgeStyle
 outline, mxOutline
P
 paintMarker, mxMarker
 panGraph
 para, mxUtils
 parentForCellChanged, mxGraphModel
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 paste, mxClipboard
 placeLabels, mxEdgeLabelLayout
 placementStage, mxHierarchicalLayout
 poll, mxSession
 popup
 post, mxUtils
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postProcessCellStyle, mxGraph
 print, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 prompt, mxUtils
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
Q
 quadTo
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 notify
O
 offset, mxCompactTreeLayout
 onEncode, mxRootChangeCodec
 onInit
 open
 order, mxCellRenderer
 orderCells, mxGraph
 orderEdge, mxCellRenderer
 OrthConnector, mxEdgeStyle
 outline, mxOutline
P
 paintMarker, mxMarker
 panGraph
 para, mxUtils
 parentForCellChanged, mxGraphModel
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 paste, mxClipboard
 placeLabels, mxEdgeLabelLayout
 placementStage, mxHierarchicalLayout
 poll, mxSession
 popup
 post, mxUtils
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postProcessCellStyle, mxGraph
 print, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 prompt, mxUtils
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
Q
 quadTo
-
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
+
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
-
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
mxCellRenderer.prototype.order = function(state)
Orders the DOM node of the shape for the given state according to the position of the corresponding cell in the graph model.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxCellRenderer.prototype.orderEdge = function(state)
Orders the DOM node of the shape for the given edge’s state according to the mxGraph.keepEdgesInBackground and mxGraph.keepEdgesInBackground rules.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
Reference to the outline mxGraph.
+
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
mxCellRenderer.prototype.order = function(state)
Orders the DOM node of the shape for the given state according to the position of the corresponding cell in the graph model.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxCellRenderer.prototype.orderEdge = function(state)
Orders the DOM node of the shape for the given edge’s state according to the mxGraph.keepEdgesInBackground and mxGraph.keepEdgesInBackground rules.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
Reference to the outline mxGraph.
-
paintMarker: function(node,
type,
p0,
pe,
color,
strokewidth,
size,
scale,
x0,
y0,
source,
style)
Paints the given marker.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxPrintPreview.prototype.print = function()
Opens the print preview and shows the print dialog.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
+
paintMarker: function(node,
type,
p0,
pe,
color,
strokewidth,
size,
scale,
x0,
y0,
source,
style)
Paints the given marker.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxPrintPreview.prototype.print = function()
Opens the print preview and shows the print dialog.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
-
mxPath.prototype.quadTo = function(x1,
y1,
x,
y)
Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
+
mxPath.prototype.quadTo = function(x1,
y1,
x,
y)
Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
diff --git a/docs/js-api/index/Functions13.html b/docs/js-api/index/Functions13.html index 8b1187867..dc16150a4 100644 --- a/docs/js-api/index/Functions13.html +++ b/docs/js-api/index/Functions13.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderPage, mxPrintPreview
 repaint, mxRubberband
 repaintGraph, mxUtils
 reparseVml, mxShape
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resize, mxDivResizer
 resizeCell
 resizeCells, mxGraph
 resizeHeight, mxDivResizer
 resizeSwimlane, mxSwimlaneManager
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 rootChanged, mxGraphModel
 rotate
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 rankCoordinates, mxCoordinateAssignment
 rankMedianPosition, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 reconfigure
 rect
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent, mxGraph
 removeCursors, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderPage, mxPrintPreview
 repaint, mxRubberband
 repaintGraph, mxUtils
 reparseVml, mxShape
 repositionValid, mxCoordinateAssignment
 reset
 resetEdge, mxGraph
 resetEdges, mxGraph
 resetFirstTime, mxEditor
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resize, mxDivResizer
 resizeCell
 resizeCells, mxGraph
 resizeHeight, mxDivResizer
 resizeSwimlane, mxSwimlaneManager
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 rootChanged, mxGraphModel
 rotate
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
-
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
Boolean specifying if the height should be updated.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
Boolean specifying if the height should be updated.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/Functions14.html b/docs/js-api/index/Functions14.html index 847efa7a2..d3ea6af34 100644 --- a/docs/js-api/index/Functions14.html +++ b/docs/js-api/index/Functions14.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 saveAs, mxUtils
 scale
 scaleAndTranslate, mxGraphView
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send, mxXmlRequest
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 shiftCell, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 SideToSide, mxEdgeStyle
 simulate, mxXmlRequest
 sizeDidChange, mxGraph
 snap
 sortCells, mxUtils
 source, mxOutline
 splitEdge, mxGraph
 start
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 submit, mxUtils
 suspend, mxSession
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 saveAs, mxUtils
 scale
 scaleAndTranslate, mxGraphView
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send, mxXmlRequest
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 shiftCell, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 SideToSide, mxEdgeStyle
 simulate, mxXmlRequest
 sizeDidChange, mxGraph
 snap
 sortCells, mxUtils
 source, mxOutline
 splitEdge, mxGraph
 start
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 submit, mxUtils
 suspend, mxSession
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
-
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
Reference to the source mxGraph.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
+
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
Reference to the source mxGraph.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
diff --git a/docs/js-api/index/Functions15.html b/docs/js-api/index/Functions15.html index d0efc9240..e1dfe6900 100644 --- a/docs/js-api/index/Functions15.html +++ b/docs/js-api/index/Functions15.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tapAndHold, mxConnectionHandler
 terminalForCellChanged, mxGraphModel
 text
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 transformControlPoint, mxGraphView
 translate
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trim
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tapAndHold, mxConnectionHandler
 terminalForCellChanged, mxGraphModel
 text
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 transformControlPoint, mxGraphView
 translate
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trim
-
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
+
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
diff --git a/docs/js-api/index/Functions16.html b/docs/js-api/index/Functions16.html index ec46beb86..9b4ed9233 100644 --- a/docs/js-api/index/Functions16.html +++ b/docs/js-api/index/Functions16.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 undoableEditHappened, mxUndoManager
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 update
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateMouseEvent, mxGraph
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 useGuidesForEvent, mxGraphHandler
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 undoableEditHappened, mxUndoManager
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 update
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHtmlCanvasSize, mxGraphView
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateMouseEvent, mxGraph
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 useGuidesForEvent, mxGraphHandler
-
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
+
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
diff --git a/docs/js-api/index/Functions17.html b/docs/js-api/index/Functions17.html index b60b02554..49e008bfd 100644 --- a/docs/js-api/index/Functions17.html +++ b/docs/js-api/index/Functions17.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validationAlert, mxGraph
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 verticalLayout, mxCompactTreeLayout
 visibleStateForCellChanged, mxGraphModel
 visit
W
 warn, mxLog
 WeightedCellSorter, WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
Z
 zoom, mxGraph
 zoomActual, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validationAlert, mxGraph
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 verticalLayout, mxCompactTreeLayout
 visibleStateForCellChanged, mxGraphModel
 visit
W
 warn, mxLog
 WeightedCellSorter, WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
Z
 zoom, mxGraph
 zoomActual, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
-
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
+
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
-
warn: function()
Adds all arguments to the console if WARN is enabled.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
+
warn: function()
Adds all arguments to the console if WARN is enabled.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
-
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
+
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
diff --git a/docs/js-api/index/Functions3.html b/docs/js-api/index/Functions3.html index 7abf624eb..ecba769ea 100644 --- a/docs/js-api/index/Functions3.html +++ b/docs/js-api/index/Functions3.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
C
 calcAttraction, mxFastOrganicLayout
 calcPositions, mxFastOrganicLayout
 calcRepulsion, mxFastOrganicLayout
 calculateCrossings, mxMedianHybridCrossingReduction
 calculatedWeightedValue, mxCoordinateAssignment
 calculateRankCrossing, mxMedianHybridCrossingReduction
 calculateWidestRank, mxCoordinateAssignment
 canExportCell, mxGraph
 canImportCell, mxGraph
 canRedo, mxUndoManager
 canUndo, mxUndoManager
 cascadeOpacity
 cellAdded
 cellCloned, mxGraphModel
 cellConnected, mxGraph
 cellLabelChanged, mxGraph
 cellRemoved
 cellResized, mxSpaceManager
 cellsAdded
 cellsFolded, mxGraph
 cellSizeUpdated, mxGraph
 cellsMoved
 cellsOrdered, mxGraph
 cellsRemoved, mxGraph
 cellsResized
 cellsToggled, mxGraph
 changePoints
 changeSelection, mxGraphSelectionModel
 changeTerminalPoint
 check, mxMultiplicity
 checkNeighbors, mxMultiplicity
 checkTerminal, mxMultiplicity
 checkType, mxMultiplicity
 childMoved, mxGraphView
 circle, mxCircleLayout
 clear
 clearCellOverlays, mxGraph
 clearSelection
 click, mxGraph
 clip
 clone
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells
 clonePreviewState, mxEdgeHandler
 cloneTemplate, mxObjectCodec
 cloneValue, mxCell
 close
 collapsedStateForCellChanged, mxGraphModel
 compare
 computeAspect, mxStencil
 configure, mxEditor
 configureHtmlShape
 configureShape, mxCellRenderer
 configureSvgShape
 configureTransparentBackground
 configureVmlShape
 confirm, mxUtils
 connect
 connectCell, mxGraph
 constrainChild, mxGraph
 consume
 consumeCycleAttribute, mxEditor
 contains
 convert, mxUrlConverter
 convertPoint
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 convertWaypoint, mxConnectionHandler
 copy
 create
 createBackgroundPageShape, mxGraphView
 createBends
 createBoundingBox, mxShape
 createBounds, mxVertexHandler
 createCellEditor, mxGraph
 createCellOverlays, mxCellRenderer
 createCellRenderer, mxGraph
 createConditions, mxDefaultPopupMenu
 createControl, mxCellRenderer
 createDashPattern, mxConnector
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createDiagramLayout, mxEditor
 createDragElement, mxDragSource
 createEdge
 createEdgeState, mxConnectionHandler
 createForeignObject, mxText
 createGraph, mxEditor
 createGraphView, mxGraph
 createGroup, mxEditor
 createGroupCell, mxGraph
 createGuideShape, mxGuide
 createHandler, mxGraph
 createHandlers, mxGraph
 createHandleShape, mxEdgeHandler
 createHtml
 createHtmlPane, mxGraphView
 createHtmlTable, mxText
 createIcons, mxConnectionHandler
 createId, mxGraphModel
 createImage, mxUtils
 createInternalCells, mxGraphHierarchyModel
 createLabel, mxCellRenderer
 createLayoutManager, mxEditor
 createLine, mxCompactTreeLayout
 createMarker
 createMenu, mxDefaultPopupMenu
 createNode, mxCompactTreeLayout
 createPageSelector, mxPrintPreview
 createPanningManager, mxGraph
 createPath, mxShape
 createPoints, mxShape
 createPopupMenu, mxEditor
 createPreviewElement, mxDragSource
 createPreviewShape, mxGraphHandler
 createProperties, mxEditor
 createRoot, mxGraphModel
 createSelectionModel, mxGraph
 createSelectionShape
 createSession, mxEditor
 createShape
 createSizer
 createSizerShape, mxVertexHandler
 createState, mxGraphView
 createStylesheet, mxGraph
 createSubmenu, mxPopupMenu
 createSvg
 createSvgGradient, mxShape
 createSvgGroup, mxShape
 createSvgPipe, mxShape
 createSvgShadow, mxShape
 createSvgSpan
 createSwimlaneLayout, mxEditor
 createSwimlaneManager, mxEditor
 createTargetVertex, mxConnectionHandler
 createTasks, mxEditor
 createToolbar, mxEditor
 createUndoableEdit
 createVertex, mxGraph
 createVirtualBend, mxElbowEdgeHandler
 createVml
 createVmlImage, mxLabel
 createVmlPane, mxGraphView
 createVmlShadow, mxShape
 createXmlDocument, mxUtils
 crossingStage, mxHierarchicalLayout
 curveTo
 cut, mxClipboard
 cycleAttribute, mxEditor
 cycleStage, mxHierarchicalLayout
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
C
 calcAttraction, mxFastOrganicLayout
 calcPositions, mxFastOrganicLayout
 calcRepulsion, mxFastOrganicLayout
 calculateCrossings, mxMedianHybridCrossingReduction
 calculatedWeightedValue, mxCoordinateAssignment
 calculateRankCrossing, mxMedianHybridCrossingReduction
 calculateWidestRank, mxCoordinateAssignment
 canExportCell, mxGraph
 canImportCell, mxGraph
 canRedo, mxUndoManager
 canUndo, mxUndoManager
 cascadeOpacity
 cellAdded
 cellCloned, mxGraphModel
 cellConnected, mxGraph
 cellLabelChanged, mxGraph
 cellRemoved
 cellResized, mxSpaceManager
 cellsAdded
 cellsFolded, mxGraph
 cellSizeUpdated, mxGraph
 cellsMoved
 cellsOrdered, mxGraph
 cellsRemoved, mxGraph
 cellsResized
 cellsToggled, mxGraph
 changePoints
 changeSelection, mxGraphSelectionModel
 changeTerminalPoint
 check, mxMultiplicity
 checkNeighbors, mxMultiplicity
 checkTerminal, mxMultiplicity
 checkType, mxMultiplicity
 childMoved, mxGraphView
 circle, mxCircleLayout
 clear
 clearCellOverlays, mxGraph
 clearSelection
 click, mxGraph
 clip
 clone
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells
 clonePreviewState, mxEdgeHandler
 cloneTemplate, mxObjectCodec
 cloneValue, mxCell
 close
 collapsedStateForCellChanged, mxGraphModel
 compare
 computeAspect, mxStencil
 configure, mxEditor
 configureHtmlShape
 configureShape, mxCellRenderer
 configureSvgShape
 configureTransparentBackground
 configureVmlShape
 confirm, mxUtils
 connect
 connectCell, mxGraph
 constrainChild, mxGraph
 consume
 consumeCycleAttribute, mxEditor
 consumePanningTrigger, mxPanningHandler
 contains
 convert, mxUrlConverter
 convertPoint
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 convertWaypoint, mxConnectionHandler
 copy
 create
 createBackgroundPageShape, mxGraphView
 createBends
 createBoundingBox, mxShape
 createBounds, mxVertexHandler
 createCellEditor, mxGraph
 createCellOverlays, mxCellRenderer
 createCellRenderer, mxGraph
 createConditions, mxDefaultPopupMenu
 createControl, mxCellRenderer
 createDashPattern, mxConnector
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createDiagramLayout, mxEditor
 createDragElement, mxDragSource
 createEdge
 createEdgeState, mxConnectionHandler
 createForeignObject, mxText
 createGraph, mxEditor
 createGraphView, mxGraph
 createGroup, mxEditor
 createGroupCell, mxGraph
 createGuideShape, mxGuide
 createHandler, mxGraph
 createHandlers, mxGraph
 createHandleShape, mxEdgeHandler
 createHtml
 createHtmlPane, mxGraphView
 createHtmlTable, mxText
 createIcons, mxConnectionHandler
 createId, mxGraphModel
 createImage, mxUtils
 createInternalCells, mxGraphHierarchyModel
 createLabel, mxCellRenderer
 createLayoutManager, mxEditor
 createLine, mxCompactTreeLayout
 createMarker
 createMenu, mxDefaultPopupMenu
 createNode, mxCompactTreeLayout
 createPageSelector, mxPrintPreview
 createPanningManager, mxGraph
 createPath, mxShape
 createPoints, mxShape
 createPopupMenu, mxEditor
 createPreviewElement, mxDragSource
 createPreviewShape, mxGraphHandler
 createProperties, mxEditor
 createRoot, mxGraphModel
 createSelectionModel, mxGraph
 createSelectionShape
 createSession, mxEditor
 createShape
 createSizer
 createSizerShape, mxVertexHandler
 createState, mxGraphView
 createStylesheet, mxGraph
 createSubmenu, mxPopupMenu
 createSvg
 createSvgGradient, mxShape
 createSvgGroup, mxShape
 createSvgPipe, mxShape
 createSvgShadow, mxShape
 createSvgSpan
 createSwimlaneLayout, mxEditor
 createSwimlaneManager, mxEditor
 createTargetVertex, mxConnectionHandler
 createTasks, mxEditor
 createToolbar, mxEditor
 createUndoableEdit
 createVertex, mxGraph
 createVirtualBend, mxElbowEdgeHandler
 createVml
 createVmlImage, mxLabel
 createVmlPane, mxGraphView
 createVmlShadow, mxShape
 createXmlDocument, mxUtils
 crossingStage, mxHierarchicalLayout
 curveTo
 cut, mxClipboard
 cycleAttribute, mxEditor
 cycleStage, mxHierarchicalLayout
-
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
convert: function(url)
Converts the given URL to an absolute URL.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
+
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
convert: function(url)
Converts the given URL to an absolute URL.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
diff --git a/docs/js-api/index/Functions4.html b/docs/js-api/index/Functions4.html index 46d007b0e..9cbef1ddf 100644 --- a/docs/js-api/index/Functions4.html +++ b/docs/js-api/index/Functions4.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
D
 dblClick, mxGraph
 debug, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChanges, mxSession
 decodeChild
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 decodeRoot, mxModelCodec
 decodeTemplates, mxEditorCodec
 destroy
 destroyIcons, mxConnectionHandler
 destroyShapes, mxGraphHandler
 dfs
 die, mxUndoableEdit
 disableContextMenu, mxEvent
 disconnect, mxChildChange
 disconnectGraph, mxGraph
 dispose, mxClient
 dragEnter, mxDragSource
 dragExit, mxDragSource
 dragOver, mxDragSource
 drawGlass, mxImageExport
 drawHighlight, mxCellHighlight
 drawImage, mxImageExport
 drawLabel, mxImageExport
 drawLabelBackground, mxImageExport
 drawMarker, mxImageExport
 drawNode, mxStencil
 drawOverlays, mxImageExport
 drawPreview
 drawShape
 drawState, mxImageExport
 drop
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
D
 dblClick, mxGraph
 debug, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChanges, mxSession
 decodeChild
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 decodeRoot, mxModelCodec
 decodeTemplates, mxEditorCodec
 destroy
 destroyIcons, mxConnectionHandler
 destroyShapes, mxGraphHandler
 dfs
 die, mxUndoableEdit
 disableContextMenu, mxEvent
 disconnect, mxChildChange
 disconnectGraph, mxGraph
 dispose, mxClient
 doResizeContainer, mxGraph
 dragEnter, mxDragSource
 dragExit, mxDragSource
 dragOver, mxDragSource
 drawGlass, mxImageExport
 drawHighlight, mxCellHighlight
 drawImage, mxImageExport
 drawLabel, mxImageExport
 drawLabelBackground, mxImageExport
 drawMarker, mxImageExport
 drawNode, mxStencil
 drawOverlays, mxImageExport
 drawPreview
 drawShape
 drawState, mxImageExport
 drop
-
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
disableContextMenu: function()
Disables the context menu for the given element.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function(state)
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
+
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
disableContextMenu: function()
Disables the context menu for the given element.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function(state)
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
diff --git a/docs/js-api/index/Functions5.html b/docs/js-api/index/Functions5.html index e0209471f..41452c163 100644 --- a/docs/js-api/index/Functions5.html +++ b/docs/js-api/index/Functions5.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 ElbowConnector, mxEdgeStyle
 ellipse
 EllipsePerimeter, mxPerimeter
 encode
 encodeCell
 encodeChanges, mxSession
 encodeObject
 encodeValue, mxObjectCodec
 end, mxPath
 endUpdate, mxGraphModel
 enter, mxLog
 enterGroup, mxGraph
 EntityRelation, mxEdgeStyle
 equalEntries, mxUtils
 equalPoints, mxUtils
 equals
 error, mxUtils
 escape
 eval, mxUtils
 evaluateAttribute, mxStencil
 execute
 executeLayout, mxLayoutManager
 exitGroup, mxGraph
 extend, mxUtils
 extendedDfs, mxGraphHierarchyModel
 extendParent, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 ElbowConnector, mxEdgeStyle
 ellipse
 EllipsePerimeter, mxPerimeter
 encode
 encodeCell
 encodeChanges, mxSession
 encodeObject
 encodeValue, mxObjectCodec
 end, mxPath
 endUpdate, mxGraphModel
 enter, mxLog
 enterGroup, mxGraph
 EntityRelation, mxEdgeStyle
 equalEntries, mxUtils
 equalPoints, mxUtils
 equals
 error, mxUtils
 escape
 eval, mxUtils
 evaluateAttribute, mxStencil
 execute
 executeLayout, mxLayoutManager
 exitGroup, mxGraph
 extend, mxUtils
 extendedDfs, mxGraphHierarchyModel
 extendParent, mxGraph
-
ElbowConnector: function (state,
source,
target,
points,
result)
Uses either SideToSide or TopToBottom depending on the horizontal flag in the cell style.
mxPath.prototype.ellipse = function(x,
y,
w,
h)
Adds the given ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
EllipsePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes an elliptic perimeter.
mxCodec.prototype.encode = function(obj)
Encodes the specified object and returns the resulting XML node.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
view)
Encodes the given mxGraphView using encodeCell starting at the model’s root.
mxObjectCodec.prototype.encode = function(enc,
obj)
Encodes the specified object and returns a node representing then given object.
codec.encode = function(enc,
obj)
Encodes a stylesheet.
mxCodec.prototype.encodeCell = function(cell,
node,
includeChildren)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
codec.encodeCell = function(enc,
view,
cell)
Recursively encodes the specifed cell.
mxSession.prototype.encodeChanges = function(changes,
invert)
Returns the XML representation for the given array of changes.
codec.encodeObject = function(enc,
obj,
node)
Encodes the given mxGraphModel by writing a (flat) XML sequence of cell nodes as produced by the mxCellCodec.
mxObjectCodec.prototype.encodeObject = function(enc,
obj,
node)
Encodes the value of each member in then given obj into the given node using encodeValue.
mxObjectCodec.prototype.encodeValue = function(enc,
obj,
name,
value,
node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
mxPath.prototype.end = function()
Ends the path.
mxGraphModel.prototype.endUpdate = function()
Decrements the updateLevel by one and fires an undo event if the updateLevel reaches 0.
enter: function(string)
Writes the specified string to the console if TRACE is true and returns the current time in milliseconds.
mxGraph.prototype.enterGroup = function(cell)
Uses the given cell as the root of the displayed cell hierarchy.
EntityRelation: function (state,
source,
target,
points,
result)
Implements an entity relation style for edges (as used in database schema diagrams).
equalEntries: function(a,
b)
Compares all entries in the given dictionaries.
equalPoints: function(a,
b)
Compares all mxPoints in the given lists.
mxPoint.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
mxRectangle.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
error: function(message,
width,
close,
icon)
Displays the given error message in a new mxWindow of the given width.
mxGraph.prototype.escape = function(evt)
Processes an escape keystroke.
mxKeyHandler.prototype.escape = function(evt)
Hook to process ESCAPE keystrokes.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxStencil.prototype.evaluateAttribute = function(node,
attribute,
state)
Gets the attribute for the given name from the given node.
mxCellAttributeChange.prototype.execute = function()
Changes the attribute of the cell’s user object by using mxCell.setAttribute.
mxChildChange.prototype.execute = function()
Changes the parent of child using mxGraphModel.parentForCellChanged and removes or restores the cell’s connections.
mxCircleLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxCollapseChange.prototype.execute = function()
Changes the collapsed state of cell to previous using mxGraphModel.collapsedStateForCellChanged.
mxCompactTreeLayout.prototype.execute = function(parent,
root)
Implements mxGraphLayout.execute.
mxCompositeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute by executing all layouts in a single transaction.
mxCoordinateAssignment.prototype.execute = function(parent)
A basic horizontal coordinate assignment algorithm
mxCurrentRootChange.prototype.execute = function()
Changes the current root of the view.
mxEdgeLabelLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxEditor.prototype.execute = function (actionname,
cell,
evt)
Executes the function with the given name in actions passing the editor instance and given cell as the first and second argument.
mxFastOrganicLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxGeometryChange.prototype.execute = function()
Changes the geometry of cell ro previous using mxGraphModel.geometryForCellChanged.
mxGraphLayout.prototype.execute = function(parent)
Executes the layout algorithm for the children of the given parent.
mxGraphModel.prototype.execute = function(change)
Executes the given edit and fires events if required.
mxHierarchicalLayout.prototype.execute = function(parent,
roots)
Executes the layout for the children of the specified parent.
mxHierarchicalLayoutStage.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxMedianHybridCrossingReduction.prototype.execute = function(parent)
Performs a vertex ordering within ranks as described by Gansner et al 1993
mxMinimumCycleRemover.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxParallelEdgeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxPartitionLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxRootChange.prototype.execute = function()
Carries out a change of the root using mxGraphModel.rootChanged.
mxSelectionChange.prototype.execute = function()
Changes the current root of the view.
mxStackLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxStyleChange.prototype.execute = function()
Changes the style of cell to previous using mxGraphModel.styleForCellChanged.
mxTerminalChange.prototype.execute = function()
Changes the terminal of cell to previous using mxGraphModel.terminalForCellChanged.
mxValueChange.prototype.execute = function()
Changes the value of cell to previous using mxGraphModel.valueForCellChanged.
mxVisibleChange.prototype.execute = function()
Changes the visible state of cell to previous using mxGraphModel.visibleStateForCellChanged.
mxLayoutManager.prototype.executeLayout = function(layout,
parent)
Executes the given layout on the given parent.
mxGraph.prototype.exitGroup = function()
Changes the current root to the next valid root in the displayed cell hierarchy.
extend: function(ctor,
superCtor)
Assigns a copy of the superclass prototype to the subclass prototype.
mxGraphHierarchyModel.prototype.extendedDfs = function(parent,
root,
connectingEdge,
visitor,
seen,
ancestors,
childHash,
layer)
Performs a depth first search on the internal hierarchy model.
mxGraph.prototype.extendParent = function(cell)
Resizes the parents recursively so that they contain the complete area of the resized child cell.
+
ElbowConnector: function (state,
source,
target,
points,
result)
Uses either SideToSide or TopToBottom depending on the horizontal flag in the cell style.
mxPath.prototype.ellipse = function(x,
y,
w,
h)
Adds the given ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
EllipsePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes an elliptic perimeter.
mxCodec.prototype.encode = function(obj)
Encodes the specified object and returns the resulting XML node.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
view)
Encodes the given mxGraphView using encodeCell starting at the model’s root.
mxObjectCodec.prototype.encode = function(enc,
obj)
Encodes the specified object and returns a node representing then given object.
codec.encode = function(enc,
obj)
Encodes a stylesheet.
mxCodec.prototype.encodeCell = function(cell,
node,
includeChildren)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
codec.encodeCell = function(enc,
view,
cell)
Recursively encodes the specifed cell.
mxSession.prototype.encodeChanges = function(changes,
invert)
Returns the XML representation for the given array of changes.
codec.encodeObject = function(enc,
obj,
node)
Encodes the given mxGraphModel by writing a (flat) XML sequence of cell nodes as produced by the mxCellCodec.
mxObjectCodec.prototype.encodeObject = function(enc,
obj,
node)
Encodes the value of each member in then given obj into the given node using encodeValue.
mxObjectCodec.prototype.encodeValue = function(enc,
obj,
name,
value,
node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
mxPath.prototype.end = function()
Ends the path.
mxGraphModel.prototype.endUpdate = function()
Decrements the updateLevel by one and fires an undo event if the updateLevel reaches 0.
enter: function(string)
Writes the specified string to the console if TRACE is true and returns the current time in milliseconds.
mxGraph.prototype.enterGroup = function(cell)
Uses the given cell as the root of the displayed cell hierarchy.
EntityRelation: function (state,
source,
target,
points,
result)
Implements an entity relation style for edges (as used in database schema diagrams).
equalEntries: function(a,
b)
Compares all entries in the given dictionaries.
equalPoints: function(a,
b)
Compares all mxPoints in the given lists.
mxPoint.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
mxRectangle.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
error: function(message,
width,
close,
icon)
Displays the given error message in a new mxWindow of the given width.
mxGraph.prototype.escape = function(evt)
Processes an escape keystroke.
mxKeyHandler.prototype.escape = function(evt)
Hook to process ESCAPE keystrokes.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxStencil.prototype.evaluateAttribute = function(node,
attribute,
state)
Gets the attribute for the given name from the given node.
mxCellAttributeChange.prototype.execute = function()
Changes the attribute of the cell’s user object by using mxCell.setAttribute.
mxChildChange.prototype.execute = function()
Changes the parent of child using mxGraphModel.parentForCellChanged and removes or restores the cell’s connections.
mxCircleLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxCollapseChange.prototype.execute = function()
Changes the collapsed state of cell to previous using mxGraphModel.collapsedStateForCellChanged.
mxCompactTreeLayout.prototype.execute = function(parent,
root)
Implements mxGraphLayout.execute.
mxCompositeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute by executing all layouts in a single transaction.
mxCoordinateAssignment.prototype.execute = function(parent)
A basic horizontal coordinate assignment algorithm
mxCurrentRootChange.prototype.execute = function()
Changes the current root of the view.
mxEdgeLabelLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxEditor.prototype.execute = function (actionname,
cell,
evt)
Executes the function with the given name in actions passing the editor instance and given cell as the first and second argument.
mxFastOrganicLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxGeometryChange.prototype.execute = function()
Changes the geometry of cell ro previous using mxGraphModel.geometryForCellChanged.
mxGraphLayout.prototype.execute = function(parent)
Executes the layout algorithm for the children of the given parent.
mxGraphModel.prototype.execute = function(change)
Executes the given edit and fires events if required.
mxHierarchicalLayout.prototype.execute = function(parent,
roots)
Executes the layout for the children of the specified parent.
mxHierarchicalLayoutStage.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxMedianHybridCrossingReduction.prototype.execute = function(parent)
Performs a vertex ordering within ranks as described by Gansner et al 1993
mxMinimumCycleRemover.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxParallelEdgeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxPartitionLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxRootChange.prototype.execute = function()
Carries out a change of the root using mxGraphModel.rootChanged.
mxSelectionChange.prototype.execute = function()
Changes the current root of the view.
mxStackLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxStyleChange.prototype.execute = function()
Changes the style of cell to previous using mxGraphModel.styleForCellChanged.
mxTerminalChange.prototype.execute = function()
Changes the terminal of cell to previous using mxGraphModel.terminalForCellChanged.
mxValueChange.prototype.execute = function()
Changes the value of cell to previous using mxGraphModel.valueForCellChanged.
mxVisibleChange.prototype.execute = function()
Changes the visible state of cell to previous using mxGraphModel.visibleStateForCellChanged.
mxLayoutManager.prototype.executeLayout = function(layout,
parent)
Executes the given layout on the given parent.
mxGraph.prototype.exitGroup = function()
Changes the current root to the next valid root in the displayed cell hierarchy.
extend: function(ctor,
superCtor)
Assigns a copy of the superclass prototype to the subclass prototype.
mxGraphHierarchyModel.prototype.extendedDfs = function(parent,
root,
connectingEdge,
visitor,
seen,
ancestors,
childHash,
layer)
Performs a depth first search on the internal hierarchy model.
mxGraph.prototype.extendParent = function(cell)
Resizes the parents recursively so that they contain the complete area of the resized child cell.
diff --git a/docs/js-api/index/Functions6.html b/docs/js-api/index/Functions6.html index b796b146b..159a1d32b 100644 --- a/docs/js-api/index/Functions6.html +++ b/docs/js-api/index/Functions6.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
F
 fadeOut
 fill
 fillstroke
 filterCells, mxGraphModel
 filterDescendants, mxGraphModel
 findNearestSegment, mxUtils
 findNode, mxUtils
 findNodeByAttribute, mxUtils
 findParallels, mxParallelEdgeLayout
 findTreeRoots
 fireEvent, mxEventSource
 fireMouseEvent, mxGraph
 fit
 fixRanks, mxGraphHierarchyModel
 flipEdge, mxGraph
 focusLost, mxCellEditor
 foldCells, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
F
 fadeOut
 fill
 fillstroke
 filterCells, mxGraphModel
 filterDescendants, mxGraphModel
 findNearestSegment, mxUtils
 findNode, mxUtils
 findNodeByAttribute, mxUtils
 findParallels, mxParallelEdgeLayout
 findTreeRoots
 fireEvent, mxEventSource
 fireMouseEvent, mxGraph
 fit
 fixRanks, mxGraphHierarchyModel
 flipEdge, mxGraph
 focusLost, mxCellEditor
 foldCells, mxGraph
-
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
Asynchronous fade-out operation.
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
See mxEffects.fadeOut.
fill: function()
Fills the current path.
fill: function()
Fills the current path.
Fills and paints the outline of the current path.
Fills and paints the outline of the current path.
mxGraphModel.prototype.filterCells = function(cells,
filter)
Returns the cells from the given array where the fiven filter function returns true.
mxGraphModel.prototype.filterDescendants = function(filter,
parent)
Visits all cells recursively and applies the specified filter function to each cell.
findNearestSegment: function(state,
x,
y)
Finds the index of the nearest segment on the given cell state for the specified coordinate pair.
findNode: function(node,
attr,
value)
Returns the first node where attr equals value.
findNodeByAttribute: function()
Returns the first node where the given attribute matches the given value.
mxParallelEdgeLayout.prototype.findParallels = function(parent)
Finds the parallel edges in the given parent.
mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)
Returns all children in the given parent which do not have incoming edges.
mxHierarchicalLayout.prototype.findTreeRoots = function(parent)
Returns all children in the given parent which do not have incoming edges.
mxEventSource.prototype.fireEvent = function(evt,
sender)
Dispatches the given event to the listeners which are registered for the event.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxGraph.prototype.fit = function(border,
keepOrigin)
Scales the graph such that the complete diagram fits into container and returns the current scale in the view.
fit: function(node)
Makes sure the given node is inside the visible area of the window.
mxWindow.prototype.fit = function()
Makes sure the window is inside the client area of the window.
mxGraphHierarchyModel.prototype.fixRanks = function()
Fixes the layer assignments to the values stored in the nodes.
mxGraph.prototype.flipEdge = function(edge)
Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.
mxCellEditor.prototype.focusLost = function()
Called if the textarea has lost focus.
mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)
Sets the collapsed state of the specified cells and all descendants if recurse is true.
+
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
Asynchronous fade-out operation.
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
See mxEffects.fadeOut.
fill: function()
Fills the current path.
fill: function()
Fills the current path.
Fills and paints the outline of the current path.
Fills and paints the outline of the current path.
mxGraphModel.prototype.filterCells = function(cells,
filter)
Returns the cells from the given array where the fiven filter function returns true.
mxGraphModel.prototype.filterDescendants = function(filter,
parent)
Visits all cells recursively and applies the specified filter function to each cell.
findNearestSegment: function(state,
x,
y)
Finds the index of the nearest segment on the given cell state for the specified coordinate pair.
findNode: function(node,
attr,
value)
Returns the first node where attr equals value.
findNodeByAttribute: function()
Returns the first node where the given attribute matches the given value.
mxParallelEdgeLayout.prototype.findParallels = function(parent)
Finds the parallel edges in the given parent.
mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)
Returns all children in the given parent which do not have incoming edges.
mxHierarchicalLayout.prototype.findTreeRoots = function(parent)
Returns all children in the given parent which do not have incoming edges.
mxEventSource.prototype.fireEvent = function(evt,
sender)
Dispatches the given event to the listeners which are registered for the event.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxGraph.prototype.fit = function(border,
keepOrigin)
Scales the graph such that the complete diagram fits into container and returns the current scale in the view.
fit: function(node)
Makes sure the given node is inside the visible area of the window.
mxWindow.prototype.fit = function()
Makes sure the window is inside the client area of the window.
mxGraphHierarchyModel.prototype.fixRanks = function()
Fixes the layer assignments to the values stored in the nodes.
mxGraph.prototype.flipEdge = function(edge)
Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.
mxCellEditor.prototype.focusLost = function()
Called if the textarea has lost focus.
mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)
Sets the collapsed state of the specified cells and all descendants if recurse is true.
diff --git a/docs/js-api/index/Functions7.html b/docs/js-api/index/Functions7.html index 8ea18ce74..befc999ed 100644 --- a/docs/js-api/index/Functions7.html +++ b/docs/js-api/index/Functions7.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometryForCellChanged, mxGraphModel
 get
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundBounds, mxImageExport
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBoundingBox, mxUtils
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getConverter
 getCoreCell
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta, mxMorphing
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocument, mxXmlCanvas2D
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientId, mxShape
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds, mxImageExport
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds, mxCellRenderer
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset
 getOffsetSize, mxGraph
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPath, mxPath
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot, mxGraphModel
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation, mxShape
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShapeConstructor, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgClip, mxText
 getSvgShadowTransform, mxShape
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTableSize, mxText
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVerticalAlign, mxGraph
 getVerticalOffset, mxText
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint, mxOutline
 groupCells
 grow, mxRectangle
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometryForCellChanged, mxGraphModel
 get
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundBounds, mxImageExport
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBorderSizes, mxGraph
 getBoundingBox, mxUtils
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getConverter
 getCoreCell
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta, mxMorphing
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocument, mxXmlCanvas2D
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientId, mxShape
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds, mxImageExport
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds, mxCellRenderer
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPath, mxPath
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot, mxGraphModel
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation, mxShape
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShapeConstructor, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgClip, mxText
 getSvgShadowTransform, mxShape
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTableSize, mxText
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVerticalAlign, mxGraph
 getVerticalOffset, mxText
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint, mxOutline
 groupCells
 grow, mxRectangle
-
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxImageExport.prototype.getBackgroundBounds = function(state)
Draws the given state to the given canvas.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPanningHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state)
Returns the bounds to be used to draw the control (folding icon) of the given state.
getConverter: function()
Returns converter.
getConverter: function()
Returns converter.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
getDocument: function()
Returns the owner document of the root element.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell,
geometry)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientId = function(start,
end)
Creates a unique ID for the gradient of this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxImageExport.prototype.getImageBounds = function(state)
Draws the given state to the given canvas.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
mxText.prototype.getOffset = function(outerWidth,
outerHeight,
actualWidth,
actualHeight,
horizontal)
Returns the description of the space between the bounds size and the label size as an mxPoint.
getOffset: function(container)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOffsetSize = function()
Returns the actual size of the the viewport minus padding and border sizes.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxPath.prototype.getPath = function()
Returns string that represents the path in format.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxShape.prototype.getRotation = function()
Returns the current rotation including direction.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
getSizeForString: function(text,
fontSize,
fontFamily)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function(horizontal)
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxText.prototype.getSvgClip = function(svg,
x,
y,
w,
h)
Returns a new or existing SVG clip path which is a descendant of the given SVG node with a unique ID.
mxShape.prototype.getSvgShadowTransform = function(node,
shadow)
Returns the current transformation for SVG shadows.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxText.prototype.getTableSize = function(table)
Returns the actual size of the table.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxText.prototype.getVerticalOffset = function(offset)
Returns the factors for the offset to be added to the text vertical text rotation.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
Renderhint to be used for the outline graph.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
+
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxImageExport.prototype.getBackgroundBounds = function(state)
Draws the given state to the given canvas.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPanningHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state)
Returns the bounds to be used to draw the control (folding icon) of the given state.
getConverter: function()
Returns converter.
getConverter: function()
Returns converter.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
getDocument: function()
Returns the owner document of the root element.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell,
geometry)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientId = function(start,
end)
Creates a unique ID for the gradient of this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxImageExport.prototype.getImageBounds = function(state)
Draws the given state to the given canvas.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
mxText.prototype.getOffset = function(outerWidth,
outerHeight,
actualWidth,
actualHeight,
horizontal)
Returns the description of the space between the bounds size and the label size as an mxPoint.
getOffset: function(container)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxPath.prototype.getPath = function()
Returns string that represents the path in format.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxShape.prototype.getRotation = function()
Returns the current rotation including direction.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
getSizeForString: function(text,
fontSize,
fontFamily)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function(horizontal)
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxText.prototype.getSvgClip = function(svg,
x,
y,
w,
h)
Returns a new or existing SVG clip path which is a descendant of the given SVG node with a unique ID.
mxShape.prototype.getSvgShadowTransform = function(node,
shadow)
Returns the current transformation for SVG shadows.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxText.prototype.getTableSize = function(table)
Returns the actual size of the table.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxText.prototype.getVerticalOffset = function(offset)
Returns the factors for the offset to be added to the text vertical text rotation.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
Renderhint to be used for the outline graph.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
diff --git a/docs/js-api/index/Functions8.html b/docs/js-api/index/Functions8.html index fe19e1791..c68b3fb57 100644 --- a/docs/js-api/index/Functions8.html +++ b/docs/js-api/index/Functions8.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 handleGesture, mxGraph
 handlingResize, mxDivResizer
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 hide
 hideMenu, mxPopupMenu
 hideProperties, mxEditor
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontalLayout, mxCompactTreeLayout
 htmlEntities, mxUtils
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 handleGesture, mxGraph
 handlingResize, mxDivResizer
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 hide
 hideMenu, mxPopupMenu
 hideProperties, mxEditor
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontalLayout, mxCompactTreeLayout
 htmlEntities, mxUtils
-
mxGraph.prototype.handleGesture = function(state,
evt)
Invokes if a gesture event has been detected on a cell state.
Boolean specifying if the width should be updated.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
+
mxGraph.prototype.handleGesture = function(state,
evt)
Invokes if a gesture event has been detected on a cell state.
Boolean specifying if the width should be updated.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
diff --git a/docs/js-api/index/Functions9.html b/docs/js-api/index/Functions9.html index 16ea9036e..9dd944060 100644 --- a/docs/js-api/index/Functions9.html +++ b/docs/js-api/index/Functions9.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 image
 importCells, mxGraph
 include, mxClient
 indexOf, mxUtils
 indexOfStylename, mxUtils
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initialize, mxCellRenderer
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank, mxGraphHierarchyModel
 initMarkers, mxImageExport
 initShapes, mxImageExport
 insert
 insertEdge
 insertGradient, mxShape
 insertIntoGraph, mxCodec
 insertState, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 intersection, mxUtils
 intersects
 invalidate, mxGraphView
 invert, mxGraphHierarchyEdge
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAutoAntiAlias, mxSvgCanvas2D
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isCompressed, mxXmlCanvas2D
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainedEvent, mxGraph
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEmptyString, mxText
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventsEnabled, mxEventSource
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isFoEnabled, mxSvgCanvas2D
 isForceMarqueeEvent, mxGraph
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isMixedModeHtml, mxShape
 isModified
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNode, mxUtils
 isNumeric, mxUtils
 isOrthogonal, mxGraph
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isPopupTrigger
 isPort, mxGraph
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isReference
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStopEvent, mxConnectionHandler
 isStyleSet, mxText
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isTerminalPointMovable, mxGraph
 isTextEnabled
 isToggleEvent, mxGraph
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml
 isWrapping, mxGraph
+
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 image
 importCells, mxGraph
 include, mxClient
 indexOf, mxUtils
 indexOfStylename, mxUtils
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initialize, mxCellRenderer
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank, mxGraphHierarchyModel
 initMarkers, mxImageExport
 initShapes, mxImageExport
 insert
 insertEdge
 insertGradient, mxShape
 insertIntoGraph, mxCodec
 insertState, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 intersection, mxUtils
 intersects
 invalidate, mxGraphView
 invert, mxGraphHierarchyEdge
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAutoAntiAlias, mxSvgCanvas2D
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isCompressed, mxXmlCanvas2D
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainedEvent, mxGraph
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEmptyString, mxText
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventsEnabled, mxEventSource
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isFoEnabled, mxSvgCanvas2D
 isForceMarqueeEvent, mxGraph
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isMixedModeHtml, mxShape
 isModified
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNode, mxUtils
 isNumeric, mxUtils
 isOrthogonal, mxGraph
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isPopupTrigger
 isPort, mxGraph
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isReference
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStopEvent, mxConnectionHandler
 isStyleSet, mxText
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isTerminalPointMovable, mxGraph
 isTextEnabled
 isToggleEvent, mxGraph
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml
 isWrapping, mxGraph
-
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
include: function(src)
Dynamically adds a script node to the document header.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and adds it to the container.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPanningHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initialize = function(state,
rendering)
Initializes the display for the given cell state.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxImageExport.prototype.initMarkers = function()
Initializes the built-in markers.
mxImageExport.prototype.initShapes = function()
Initializes the built-in shapes.
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxShape.prototype.insertGradient = function(node)
Inserts the given gradient node.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
mxCellRenderer.prototype.insertState = function(state,
nextNode)
Inserts the given state before the given node into its parent.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)
Invalidates the state of the given cell, all its descendants and connected edges.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAutoAntiAlias: function()
Returns autoAntiAlias.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
isCompressed: function()
Returns compressed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxText.prototype.isEmptyString = function(text)
Returns true if the given string is empty or contains only whitespace.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
isFoEnabled: function()
Returns foEnabled.
mxGraph.prototype.isForceMarqueeEvent = function(evt)
Returns true if the given event forces marquee selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxShape.prototype.isMixedModeHtml = function()
Used to determine if a shape can be rendered using createHtml in mixed mode Html without compromising the display accuracy.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(str)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxText.prototype.isStyleSet = function(style)
Returns true if the given font style (bold, italic etc) is true in this shape’s fontStyle.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
isTextEnabled: function()
Returns textEnabled.
isTextEnabled: function()
Returns textEnabled.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
mxPath.prototype.isVml = function()
Returns true if format is vml.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
+
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
include: function(src)
Dynamically adds a script node to the document header.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and adds it to the container.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPanningHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initialize = function(state,
rendering)
Initializes the display for the given cell state.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxImageExport.prototype.initMarkers = function()
Initializes the built-in markers.
mxImageExport.prototype.initShapes = function()
Initializes the built-in shapes.
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxShape.prototype.insertGradient = function(node)
Inserts the given gradient node.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
mxCellRenderer.prototype.insertState = function(state,
nextNode)
Inserts the given state before the given node into its parent.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)
Invalidates the state of the given cell, all its descendants and connected edges.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAutoAntiAlias: function()
Returns autoAntiAlias.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
isCompressed: function()
Returns compressed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxText.prototype.isEmptyString = function(text)
Returns true if the given string is empty or contains only whitespace.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
isFoEnabled: function()
Returns foEnabled.
mxGraph.prototype.isForceMarqueeEvent = function(evt)
Returns true if the given event forces marquee selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxShape.prototype.isMixedModeHtml = function()
Used to determine if a shape can be rendered using createHtml in mixed mode Html without compromising the display accuracy.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(str)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxText.prototype.isStyleSet = function(style)
Returns true if the given font style (bold, italic etc) is true in this shape’s fontStyle.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
isTextEnabled: function()
Returns textEnabled.
isTextEnabled: function()
Returns textEnabled.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
mxPath.prototype.isVml = function()
Returns true if format is vml.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
diff --git a/docs/js-api/index/General10.html b/docs/js-api/index/General10.html index 082164215..096d201fd 100644 --- a/docs/js-api/index/General10.html +++ b/docs/js-api/index/General10.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 jettyPositions, mxCoordinateAssignment
 join, mxCompactTreeLayout
K
 keepEdgesInBackground, mxGraph
 keepEdgesInForeground, mxGraph
 keepFirstLocation, mxStackLayout
 keepOnTop, mxCellHighlight
 keepSelectionVisibleOnZoom, mxGraph
 keyDown, mxKeyHandler
 keyHandler, mxEditor
L
 label, mxShape
 LABEL_CHANGED
 LABEL_HANDLE, mxEvent
 LABEL_HANDLE_FILLCOLOR, mxConstants
 LABEL_HANDLE_SIZE, mxConstants
 labelChanged, mxGraph
 labels, mxPopupMenu
 labelShape, mxEdgeHandler
 labelsVisible, mxGraph
 language, mxClient
 languages, mxClient
 lastSavedResource, mxEditor
 lastSnapshot, mxAutoSaveManager
 lastTouchTime, mxGraph
 lastTouchX, mxGraph
 layeringStage, mxHierarchicalLayout
 layout
 LAYOUT_CELLS
 layoutCells, mxLayoutManager
 layoutDiagram, mxEditor
 layoutFromSinks, mxHierarchicalLayout
 layoutLeaf, mxCompactTreeLayout
 layouts, mxCompositeLayout
 layoutSwimlanes, mxEditor
 leave, mxLog
 length, mxCellState
 levelDistance, mxCompactTreeLayout
 limitX, mxCoordinateAssignment
 LINE_ARCSIZE, mxConstants
 linefeed, mxSession
 lineFeed, mxEditor
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 load, mxUtils
 loadDefaultBundle, mxResources
 loadInto, mxUtils
 localEdgeProcessing
 LOCKED_HANDLE_FILLCOLOR, mxConstants
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
J
 jettyPositions, mxCoordinateAssignment
 join, mxCompactTreeLayout
K
 keepEdgesInBackground, mxGraph
 keepEdgesInForeground, mxGraph
 keepFirstLocation, mxStackLayout
 keepOnTop, mxCellHighlight
 keepSelectionVisibleOnZoom, mxGraph
 keyDown, mxKeyHandler
 keyHandler, mxEditor
L
 label, mxShape
 LABEL_CHANGED
 LABEL_HANDLE, mxEvent
 LABEL_HANDLE_FILLCOLOR, mxConstants
 LABEL_HANDLE_SIZE, mxConstants
 labelChanged, mxGraph
 labels, mxPopupMenu
 labelShape, mxEdgeHandler
 labelsVisible, mxGraph
 language, mxClient
 languages, mxClient
 lastSavedResource, mxEditor
 lastSnapshot, mxAutoSaveManager
 lastTouchTime, mxGraph
 lastTouchX, mxGraph
 layeringStage, mxHierarchicalLayout
 layout
 LAYOUT_CELLS
 layoutCells, mxLayoutManager
 layoutDiagram, mxEditor
 layoutFromSinks, mxHierarchicalLayout
 layoutLeaf, mxCompactTreeLayout
 layouts, mxCompositeLayout
 layoutSwimlanes, mxEditor
 leave, mxLog
 length, mxCellState
 levelDistance, mxCompactTreeLayout
 limitX, mxCoordinateAssignment
 LINE_ARCSIZE, mxConstants
 linefeed, mxSession
 lineFeed, mxEditor
 lineTo
 link
 linkAction, mxUtils
 linkInvoke, mxUtils
 load, mxUtils
 loadDefaultBundle, mxResources
 loadInto, mxUtils
 localEdgeProcessing
 LOCKED_HANDLE_FILLCOLOR, mxConstants
 lookup, mxCodec
 Loop, mxEdgeStyle
 ltrim, mxUtils
-
mxCoordinateAssignment.prototype.jettyPositions
Map of internal edges and (x,y) pair of positions of the start and end jetty for that edge where it connects to the source and target vertices.
mxCompactTreeLayout.prototype.join = function(node)
+
mxCoordinateAssignment.prototype.jettyPositions
Map of internal edges and (x,y) pair of positions of the start and end jetty for that edge where it connects to the source and target vertices.
mxCompactTreeLayout.prototype.join = function(node)
-
mxGraph.prototype.keepEdgesInBackground
Specifies if edges should appear in the background regardless of their order in the model.
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxStackLayout.prototype.keepFirstLocation
Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
mxEditor.prototype.keyHandler
Holds a mxDefaultKeyHandler for handling keyboard events.
+
mxGraph.prototype.keepEdgesInBackground
Specifies if edges should appear in the background regardless of their order in the model.
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxStackLayout.prototype.keepFirstLocation
Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxKeyHandler.prototype.keyDown = function(evt)
Handles the event by invoking the function bound to the respective keystroke if mxGraph.isEnabled, isEnabled and isGraphEvent all return true for the given event and mxGraph.isEditing returns false.
mxEditor.prototype.keyHandler
Holds a mxDefaultKeyHandler for handling keyboard events.
-
mxShape.prototype.label
Reference to the DOM node that should contain the label.
Specifies the event name for labelChanged.
Fires between begin- and endUpdate in cellLabelChanged.
Index for the label handle in an mxMouseEvent.
Defines the color to be used for the label handle fill color.
Defines the default size for label handles.
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxPopupMenu.prototype.labels
Specifies if any labels should be visible.
mxEdgeHandler.prototype.labelShape
Holds the mxShape that represents the label position.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
Defines the language of the client, eg.
Defines the optional array of all supported language extensions.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxAutoSaveManager.prototype.lastSnapshot
Used for autosaving.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
Holds the x-coordinate of the last touch event for double tap detection.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxCoordinateAssignment.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMedianHybridCrossingReduction.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMinimumCycleRemover.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
Specifies the event name for layoutCells.
Fires between begin- and endUpdate after all cells have been layouted in layoutCells.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxEditor.prototype.layoutDiagram
Specifies if the top-level elements in the diagram should be layed out using a vertical or horizontal stack depending on the setting of horizontalFlow.
mxHierarchicalLayout.prototype.layoutFromSinks
Whether or not the initial scan of the graph to determine the layer assigned to each vertex starts from the sinks or source (the sinks being vertices with the fewest, preferable zero, outgoing edges and sources same with incoming edges).
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
mxCompositeLayout.prototype.layouts
Holds the array of mxGraphLayouts that this layout contains.
mxEditor.prototype.layoutSwimlanes
Specifies if the children of swimlanes should be layed out, either vertically or horizontally depending on horizontalFlow.
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxCellState.prototype.length
Caches the length of an edge.
mxCompactTreeLayout.prototype.levelDistance
Holds the levelDistance.
mxCoordinateAssignment.prototype.limitX
The maximum x value this positioning lays up to
Defines the size of the arcs for rounded edges.
mxSession.prototype.linefeed
Used for encoding linefeeds.
Character to be used for encoding linefeeds in save.
mxPath.prototype.lineTo = function(x,
y)
Draws a straight line from the current poin to (x, y).
lineTo: function(x,
y)
Adds a line to the current path.
lineTo: function(x,
y)
Adds a line to the current path.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
Specifies if the default file for a given basename should be loaded.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
Defines the color to be used for the locked handle fill color.
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
+
mxShape.prototype.label
Reference to the DOM node that should contain the label.
Specifies the event name for labelChanged.
Fires between begin- and endUpdate in cellLabelChanged.
Index for the label handle in an mxMouseEvent.
Defines the color to be used for the label handle fill color.
Defines the default size for label handles.
mxGraph.prototype.labelChanged = function(cell,
value,
evt)
Sets the label of the specified cell to the given value using cellLabelChanged and fires mxEvent.LABEL_CHANGED while the transaction is in progress.
mxPopupMenu.prototype.labels
Specifies if any labels should be visible.
mxEdgeHandler.prototype.labelShape
Holds the mxShape that represents the label position.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
Defines the language of the client, eg.
Defines the optional array of all supported language extensions.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxAutoSaveManager.prototype.lastSnapshot
Used for autosaving.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
Holds the x-coordinate of the last touch event for double tap detection.
mxHierarchicalLayout.prototype.layeringStage = function()
Implements first stage of a Sugiyama layout.
mxCompactTreeLayout.prototype.layout = function(node)
Starts the actual compact tree layout algorithm at the given node.
mxCoordinateAssignment.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMedianHybridCrossingReduction.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMinimumCycleRemover.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxParallelEdgeLayout.prototype.layout = function(parallels)
Lays out the parallel edges in the given array.
Specifies the event name for layoutCells.
Fires between begin- and endUpdate after all cells have been layouted in layoutCells.
mxLayoutManager.prototype.layoutCells = function(cells)
Executes all layouts which have been scheduled during the changes.
mxEditor.prototype.layoutDiagram
Specifies if the top-level elements in the diagram should be layed out using a vertical or horizontal stack depending on the setting of horizontalFlow.
mxHierarchicalLayout.prototype.layoutFromSinks
Whether or not the initial scan of the graph to determine the layer assigned to each vertex starts from the sinks or source (the sinks being vertices with the fewest, preferable zero, outgoing edges and sources same with incoming edges).
mxCompactTreeLayout.prototype.layoutLeaf = function(node)
mxCompositeLayout.prototype.layouts
Holds the array of mxGraphLayouts that this layout contains.
mxEditor.prototype.layoutSwimlanes
Specifies if the children of swimlanes should be layed out, either vertically or horizontally depending on horizontalFlow.
leave: function(string,
t0)
Writes the specified string to the console if TRACE is true and computes the difference between the current time and t0 in milliseconds.
mxCellState.prototype.length
Caches the length of an edge.
mxCompactTreeLayout.prototype.levelDistance
Holds the levelDistance.
mxCoordinateAssignment.prototype.limitX
The maximum x value this positioning lays up to
Defines the size of the arcs for rounded edges.
mxSession.prototype.linefeed
Used for encoding linefeeds.
Character to be used for encoding linefeeds in save.
mxPath.prototype.lineTo = function(x,
y)
Draws a straight line from the current poin to (x, y).
lineTo: function(x,
y)
Adds a line to the current path.
lineTo: function(x,
y)
Adds a line to the current path.
link: function(rel,
href,
doc)
Adds a link node to the head of the document.
link: function(parent,
text,
funct,
pad)
Adds a hyperlink to the specified parent and invokes the given function when the link is clicked.
linkAction: function(parent,
text,
editor,
action,
pad)
Adds a hyperlink to the specified parent that invokes action on the specified editor.
linkInvoke: function(parent,
text,
editor,
functName,
arg,
pad)
Adds a hyperlink to the specified parent that invokes the specified function on the editor passing along the specified argument.
load: function(url)
Loads the specified URL synchronously and returns the mxXmlRequest.
Specifies if the default file for a given basename should be loaded.
loadInto: function(url,
doc,
onload)
Loads the specified URL asynchronously into the specified document, invoking onload after the document has been loaded.
mxCompactTreeLayout.prototype.localEdgeProcessing = function(node)
Moves the specified node and all of its children by the given amount.
mxCoordinateAssignment.prototype.localEdgeProcessing = function(model)
Separates the x position of edges as they connect to vertices
Defines the color to be used for the locked handle fill color.
mxCodec.prototype.lookup = function(id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
Loop: function (state,
source,
target,
points,
result)
Implements a self-reference, aka.
ltrim: function(str,
chars)
Strips all whitespaces from the beginning of the string.
diff --git a/docs/js-api/index/General11.html b/docs/js-api/index/General11.html index 300bd154f..e2963a6e5 100644 --- a/docs/js-api/index/General11.html +++ b/docs/js-api/index/General11.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 maintainSwimlanes, mxEditor
 makeDraggable, mxUtils
 map, mxDictionary
 mapping, mxObjectCodec
 mark
 MARK
 markCell, mxCellMarker
 markedState, mxCellMarker
 marker
 markers
 max, mxMultiplicity
 MAX_HOTSPOT_SIZE, mxConstants
 maxCells, mxGraphHandler
 maxFitScale, mxGraph
 maxHandlers, mxSelectionCellsHandler
 maxHeight, mxCylinder
 MAXIMIZE, mxEvent
 maximizeImage, mxWindow
 maximumContainerSize, mxGraph
 maximumGraphBounds, mxGraph
 maxIterations
 maxNoImprovementIterations, mxMedianHybridCrossingReduction
 maxRank
 MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 method, mxXmlRequest
 min, mxMultiplicity
 MIN_HOTSPOT_SIZE, mxConstants
 minDistanceLimit, mxFastOrganicLayout
 minDistanceLimitSquared, mxFastOrganicLayout
 minEdgeJetty
 minFitScale, mxGraph
 MINIMIZE, mxEvent
 minimizeImage, mxWindow
 minimumContainerSize, mxGraph
 minimumGraphSize, mxGraph
 minimumSize
 minNode, mxCoordinateAssignment
 minPageBreakDist, mxGraph
 minPath, mxCoordinateAssignment
 minRank, mxGraphAbstractHierarchyCell
 mixedModeHtml
 mod, mxUtils
 model
 modified
 MOUSE_DOWN, mxEvent
 MOUSE_MOVE, mxEvent
 MOUSE_UP, mxEvent
 mouseDown
 mouseDownCounter, mxConnectionHandler
 mouseListeners, mxGraph
 mouseMove
 mouseUp
 move, mxGuide
 MOVE, mxEvent
 MOVE_CELLS
 MOVE_END, mxEvent
 MOVE_START, mxEvent
 moveCell
 moveCells
 moveCircle, mxCircleLayout
 moveEnabled, mxGraphHandler
 moveHandler
 moveIconBack, mxConnectionHandler
 moveIconFront, mxConnectionHandler
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveParent, mxHierarchicalLayout
 movePreviewAway, mxConnectionHandler
 movePropertiesDialog, mxEditor
 moveState, mxCellStatePreview
 moveTo
 moveTree, mxCompactTreeLayout
 multigraph, mxGraph
 multiplicities, mxGraph
 mxActor
 mxAnimation
 mxArrow
 mxAutoSaveManager
 mxCell
 mxCellAttributeChange
 mxCellCodec
 mxCellEditor
 mxCellHighlight
 mxCellMarker
 mxCellOverlay
 mxCellPath
 mxCellRenderer
 mxCellState
 mxCellStatePreview
 mxCellTracker
 mxChildChange
 mxChildChangeCodec
 mxCircleLayout
 mxClient
 mxClipboard
 mxCloud
 mxCodec
 mxCodecRegistry
 mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout
 mxConnectionConstraint
 mxConnectionHandler
 mxConnector
 mxConstants
 mxConstraintHandler
 mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder
 mxDefaultKeyHandler
 mxDefaultKeyHandlerCodec
 mxDefaultPopupMenu
 mxDefaultPopupMenuCodec
 mxDefaultToolbar
 mxDefaultToolbarCodec
 mxDictionary
 mxDivResizer
 mxDoubleEllipse
 mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout
 mxEdgeSegmentHandler.js
 mxEdgeStyle
 mxEditor
 mxEditorCodec
 mxEffects
 mxElbowEdgeHandler
 mxEllipse
 mxEvent
 mxEventObject
 mxEventSource
 mxFastOrganicLayout
 mxForm
 mxGenericChangeCodec
 mxGeometry
 mxGeometryChange
 mxGraph
 mxgraph=seen
 mxGraphAbstractHierarchyCell
 mxGraphCodec
 mxGraphHandler
 mxGraphHierarchyEdge
 mxGraphHierarchyModel
 mxGraphHierarchyNode
 mxGraphLayout
 mxGraphModel
 mxGraphSelectionModel
 mxGraphView
 mxGraphViewCodec
 mxGuide
 mxHexagon
 mxHierarchicalLayout
 mxHierarchicalLayoutStage
 mxImage
 mxImageBundle
 mxImageExport
 mxImageShape
 mxKeyHandler
 mxLabel
 mxLayoutManager
 mxLine
 mxLoadResources, mxClient
 mxLoadStylesheets, mxClient
 mxLog
 mxMarker
 mxMedianHybridCrossingReduction
 mxMinimumCycleRemover
 mxModelCodec
 mxMorphing
 mxMouseEvent
 mxMultiplicity
 mxObjectCodec
 mxObjectIdentity
 mxOutline
 mxPanningHandler
 mxPanningManager
 mxParallelEdgeLayout
 mxPartitionLayout
 mxPath
 mxPerimeter
 mxPoint
 mxPolyline
 mxPopupMenu
 mxPrintPreview
 mxRectangle
 mxRectangleShape
 mxResources
 mxRhombus
 mxRootChange
 mxRootChangeCodec
 mxRubberband
 mxSelectionCellsHandler
 mxSelectionChange
 mxSession
 mxShape
 mxSpaceManager
 mxStackLayout
 mxStencil
 mxStencilRegistry
 mxStencilShape
 mxStyleChange
 mxStyleRegistry
 mxStylesheet
 mxStylesheetCodec
 mxSvgCanvas2D
 mxSwimlane
 mxSwimlaneManager
 mxTemporaryCellStates
 mxTerminalChange
 mxTerminalChangeCodec
 mxText
 mxToolbar
 mxTooltipHandler
 mxTransient, mxCell
 mxTriangle
 mxUndoableEdit
 mxUndoManager
 mxUrlConverter
 mxUtils
 mxValueChange
 mxVertexHandler
 mxVisibleChange
 mxWindow
 mxXmlCanvas2D
 mxXmlRequest
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 maintainSwimlanes, mxEditor
 makeDraggable, mxUtils
 map, mxDictionary
 mapping, mxObjectCodec
 mark
 MARK
 markCell, mxCellMarker
 markedState, mxCellMarker
 marker
 markers
 max, mxMultiplicity
 MAX_HOTSPOT_SIZE, mxConstants
 maxCells, mxGraphHandler
 maxFitScale, mxGraph
 maxHandlers, mxSelectionCellsHandler
 maxHeight, mxCylinder
 MAXIMIZE, mxEvent
 maximizeImage, mxWindow
 maximumContainerSize, mxGraph
 maximumGraphBounds, mxGraph
 maxIterations
 maxNoImprovementIterations, mxMedianHybridCrossingReduction
 maxRank
 MedianCellSorter
 medianPos, mxCoordinateAssignment
 medianRank, mxMedianHybridCrossingReduction
 medianValue
 medianXValue, mxCoordinateAssignment
 merge, mxCompactTreeLayout
 mergeChildren, mxGraphModel
 method, mxXmlRequest
 min, mxMultiplicity
 MIN_HOTSPOT_SIZE, mxConstants
 minDistanceLimit, mxFastOrganicLayout
 minDistanceLimitSquared, mxFastOrganicLayout
 minEdgeJetty
 minFitScale, mxGraph
 MINIMIZE, mxEvent
 minimizeImage, mxWindow
 minimumContainerSize, mxGraph
 minimumGraphSize, mxGraph
 minimumSize
 minNode, mxCoordinateAssignment
 minPageBreakDist, mxGraph
 minPath, mxCoordinateAssignment
 minRank, mxGraphAbstractHierarchyCell
 mixedModeHtml
 mod, mxUtils
 model
 modified
 MOUSE_DOWN, mxEvent
 MOUSE_MOVE, mxEvent
 MOUSE_UP, mxEvent
 mouseDown
 mouseDownCounter, mxConnectionHandler
 mouseListeners, mxGraph
 mouseMove
 mouseUp
 move, mxGuide
 MOVE, mxEvent
 MOVE_CELLS
 MOVE_END, mxEvent
 MOVE_START, mxEvent
 moveCell
 moveCells
 moveCircle, mxCircleLayout
 moveEnabled, mxGraphHandler
 moveHandler
 moveIconBack, mxConnectionHandler
 moveIconFront, mxConnectionHandler
 moveLabel, mxEdgeHandler
 moveNode, mxCompactTreeLayout
 moveParent, mxHierarchicalLayout
 movePreviewAway, mxConnectionHandler
 movePropertiesDialog, mxEditor
 moveState, mxCellStatePreview
 moveTo
 moveTree, mxCompactTreeLayout
 multigraph, mxGraph
 multiplicities, mxGraph
 mxActor
 mxAnimation
 mxArrow
 mxAutoSaveManager
 mxCell
 mxCellAttributeChange
 mxCellCodec
 mxCellEditor
 mxCellHighlight
 mxCellMarker
 mxCellOverlay
 mxCellPath
 mxCellRenderer
 mxCellState
 mxCellStatePreview
 mxCellTracker
 mxChildChange
 mxChildChangeCodec
 mxCircleLayout
 mxClient
 mxClipboard
 mxCloud
 mxCodec
 mxCodecRegistry
 mxCollapseChange
 mxCompactTreeLayout
 mxCompositeLayout
 mxConnectionConstraint
 mxConnectionHandler
 mxConnector
 mxConstants
 mxConstraintHandler
 mxCoordinateAssignment
 mxCurrentRootChange
 mxCylinder
 mxDefaultKeyHandler
 mxDefaultKeyHandlerCodec
 mxDefaultPopupMenu
 mxDefaultPopupMenuCodec
 mxDefaultToolbar
 mxDefaultToolbarCodec
 mxDictionary
 mxDivResizer
 mxDoubleEllipse
 mxDragSource
 mxEdgeHandler
 mxEdgeLabelLayout
 mxEdgeSegmentHandler.js
 mxEdgeStyle
 mxEditor
 mxEditorCodec
 mxEffects
 mxElbowEdgeHandler
 mxEllipse
 mxEvent
 mxEventObject
 mxEventSource
 mxFastOrganicLayout
 mxForm
 mxGenericChangeCodec
 mxGeometry
 mxGeometryChange
 mxGraph
 mxgraph=seen
 mxGraphAbstractHierarchyCell
 mxGraphCodec
 mxGraphHandler
 mxGraphHierarchyEdge
 mxGraphHierarchyModel
 mxGraphHierarchyNode
 mxGraphLayout
 mxGraphModel
 mxGraphSelectionModel
 mxGraphView
 mxGraphViewCodec
 mxGuide
 mxHexagon
 mxHierarchicalLayout
 mxHierarchicalLayoutStage
 mxImage
 mxImageBundle
 mxImageExport
 mxImageShape
 mxKeyHandler
 mxLabel
 mxLayoutManager
 mxLine
 mxLoadResources, mxClient
 mxLoadStylesheets, mxClient
 mxLog
 mxMarker
 mxMedianHybridCrossingReduction
 mxMinimumCycleRemover
 mxModelCodec
 mxMorphing
 mxMouseEvent
 mxMultiplicity
 mxObjectCodec
 mxObjectIdentity
 mxOutline
 mxPanningHandler
 mxPanningManager
 mxParallelEdgeLayout
 mxPartitionLayout
 mxPath
 mxPerimeter
 mxPoint
 mxPolyline
 mxPopupMenu
 mxPrintPreview
 mxRectangle
 mxRectangleShape
 mxResources
 mxRhombus
 mxRootChange
 mxRootChangeCodec
 mxRubberband
 mxSelectionCellsHandler
 mxSelectionChange
 mxSession
 mxShape
 mxSpaceManager
 mxStackLayout
 mxStencil
 mxStencilRegistry
 mxStencilShape
 mxStyleChange
 mxStyleRegistry
 mxStylesheet
 mxStylesheetCodec
 mxSvgCanvas2D
 mxSwimlane
 mxSwimlaneManager
 mxTemporaryCellStates
 mxTerminalChange
 mxTerminalChangeCodec
 mxText
 mxToolbar
 mxTooltipHandler
 mxTransient, mxCell
 mxTriangle
 mxUndoableEdit
 mxUndoManager
 mxUrlConverter
 mxUtils
 mxValueChange
 mxVertexHandler
 mxVisibleChange
 mxWindow
 mxXmlCanvas2D
 mxXmlRequest
-
mxGraphModel.prototype.maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
mxEditor.prototype.maintainSwimlanes
Specifies if the swimlanes should be kept at the same width or height depending on the setting of horizontalFlow.
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
Stores the (key, value) pairs in this dictionary.
mxObjectCodec.prototype.mapping
Maps from from fieldnames to XML attribute names.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
Fires after a cell has been marked or unmarked.
Specifies the event name for mark.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
mxCellMarker.prototype.markedState
Holds the marked mxCellState.
mxConnectionHandler.prototype.marker
Holds the mxTerminalMarker used for finding source and target cells.
mxEdgeHandler.prototype.marker
Holds the mxTerminalMarker which is used for highlighting terminals.
mxImageExport.prototype.markers
Holds implementations for the built-in markers.
Maps from markers names to functions to paint the markers.
mxMultiplicity.prototype.max
Defines the maximum number of connections for which this rule applies.
Defines the maximum size in pixels of the portion of the cell which is to be used as a connectable region.
mxGraphHandler.prototype.maxCells
Defines the maximum number of cells to paint subhandles for.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxSelectionCellsHandler.prototype.maxHandlers
Defines the maximum number of handlers to paint individually.
mxCylinder.prototype.maxHeight
Defines the maximum height of the top and bottom part of the cylinder shape.
Specifies the event name for maximize.
mxWindow.prototype.maximizeImage
URL of the image to be used for the maximize icon in the titlebar.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
mxCoordinateAssignment.prototype.maxIterations
The number of heuristic iterations to run.
mxFastOrganicLayout.prototype.maxIterations
Total number of iterations to run the layout though.
mxMedianHybridCrossingReduction.prototype.maxIterations
The maximum number of iterations to perform whilst reducing edge crossings.
mxMedianHybridCrossingReduction.prototype.maxNoImprovementIterations
The total number of crossings found in the best configuration so far
mxGraphAbstractHierarchyCell.prototype.maxRank
The maximum rank this cell occupies.
mxGraphHierarchyModel.prototype.maxRank
Stores the largest rank number allocated
A utility class used to track cells whilst sorting occurs on the median values.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
MedianCellSorter.prototype.medianValue
The weighted value of the cell stored.
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxXmlRequest.prototype.method
Specifies the request method.
mxMultiplicity.prototype.min
Defines the minimum number of connections for which this rule applies.
Defines the minimum size in pixels of the portion of the cell which is to be used as a connectable region.
mxFastOrganicLayout.prototype.minDistanceLimit
Minimal distance limit.
mxFastOrganicLayout.prototype.minDistanceLimitSquared
Cached version of minDistanceLimit squared.
mxCompactTreeLayout.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxCoordinateAssignment.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
Specifies the event name for minimize.
mxWindow.prototype.minimizeImage
URL of the image to be used for the minimize icon in the titlebar.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraphHandler.prototype.minimumSize
Specifies the minimum number of pixels for the width and height of a selection border.
mxWindow.prototype.minimumSize
mxRectangle that specifies the minimum width and height of the window.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
mxGraphAbstractHierarchyCell.prototype.minRank
The minimum rank this cell occupies.
mxActor.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxConnector.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxCylinder.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxDoubleEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxLine.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxRhombus.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxShape.prototype.mixedModeHtml
Specifies if createHtml should be used in mixed Html mode.
mxStencilShape.prototype.mixedModeHtml
Always prefers VML in mixed mode for stencil shapes.
mxSwimlane.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
mxHierarchicalLayout.prototype.model
The internal mxGraphHierarchyModel formed of the layout.
mxSession.prototype.model
Reference to the enclosing mxGraphModel.
mxCellEditor.prototype.modified
Specifies if the label has been modified.
mxEditor.prototype.modified
True if the graph has been modified since it was last saved.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxConnectionHandler.prototype.mouseDownCounter
Counts the number of mouseDown events since the start.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
Specifies the event name for move.
Specifies the event name for moveCells.
Fires between begin- and endUpdate in moveCells.
Specifies the event name for moveEnd.
Specifies the event name for moveStart.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxCircleLayout.prototype.moveCircle
Boolean specifying if the circle should be moved to the top, left corner specified by x0 and y0.
mxGraphHandler.prototype.moveEnabled
Specifies if moving is enabled.
mxLayoutManager.prototype.moveHandler
Holds the function that handles the move event.
Holds the function that handles the move event.
mxConnectionHandler.prototype.moveIconBack
Specifies if icons should be moved to the back of the overlay pane.
mxConnectionHandler.prototype.moveIconFront
Specifies if icons should be displayed inside the graph container instead of the overlay pane.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxHierarchicalLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxConnectionHandler.prototype.movePreviewAway
Switch to enable moving the preview away from the mousepointer.
mxEditor.prototype.movePropertiesDialog
Specifies if the properties dialog should be automatically moved near the cell it is displayed for, otherwise the dialog is not moved.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxPath.prototype.moveTo = function(x,
y)
Moves the cursor to (x, y).
moveTo: function(x,
y)
Moves the current path the given coordinates.
moveTo: function(x,
y)
Moves the current path the given coordinates.
mxCompactTreeLayout.prototype.moveTree
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Extends mxShape to implement an actor shape.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
Implements a basic animation in JavaScript.
function mxAnimation(delay)
Constructs an animation.
Extends mxShape to implement an arrow shape.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
Manager for automatically saving diagrams.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
Cells are the elements of the graph model.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
Action to change the attribute of a cell’s user object.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
Codec for mxCells.
In-place editor for the graph.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
A helper class to highlight cells.
function mxCellHighlight(graph,
highlightColor,
strokeWidth)
Constructs a cell highlight.
A helper class to process mouse locations and highlight cells.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
Implements a mechanism for temporary cell Ids.
Renders cells into a document object model.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
Represents the current state of a cell in a given mxGraphView.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
Implements a live preview for moving cells.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
Event handler that highlights cells.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
Action to add or remove a child in a model.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
Codec for mxChildChanges.
Extends mxGraphLayout to implement a circluar layout for a given radius.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
Bootstrapping mechanism for the mxGraph thin client.
Singleton that implements a clipboard for graph cells.
Extends mxActor to implement a cloud shape.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
XML codec for JavaScript object graphs.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
Singleton class that acts as a global registry for codecs.
Action to change a cell’s collapsed state in a model.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
Extends mxGraphLayout to implement a compact tree (Moen) algorithm.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
Allows to compose multiple layouts into a single layout.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
Graph event handler that creates new connections.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
Extends mxShape to implement a connector shape.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
Defines various global constants.
Handles constraints on connection targets.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
Action to change the current root in a view.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
Extends mxShape to implement an cylinder shape.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
Binds keycodes to actionnames in an editor.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
Custom codec for configuring mxDefaultKeyHandlers.
Creates popupmenus for mouse events.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
Custom codec for configuring mxDefaultPopupMenus.
Toolbar for the editor.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
Custom codec for configuring mxDefaultToolbars.
A wrapper class for an associative array with object keys.
Maintains the size of a div element in Internet Explorer.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
Extends mxShape to implement a double ellipse shape.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Wrapper to create a drag source from a DOM element so that the element can be dragged over a graph and dropped into the graph as a new cell.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
Graph event handler that reconnects edges and modifies control points and the edge label location.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
Extends mxGraphLayout to implement an edge label layout.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
function mxEditor(config)
Constructs a new editor.
Codec for mxEditors.
Provides animation effects.
Graph event handler that reconnects edges and modifies control points and the edge label location.
Extends mxShape to implement an ellipse shape.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Cross-browser DOM event support.
The mxEventObject is a wrapper for all properties of a single event.
function mxEventObject(name)
Constructs a new event object with the specified name.
Base class for objects that dispatch named events.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
Extends mxGraphLayout to implement a fast organic layout algorithm.
A simple class for creating HTML forms.
function mxForm(className)
Creates a HTML table using the specified classname.
Codec for mxValueChanges, mxStyleChanges, mxGeometryChanges, mxCollapseChanges and mxVisibleChanges.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
Extends mxRectangle to represent the geometry of a cell.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
Action to change a cell’s geometry in a model.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
Extends mxEventSource to implement a graph component for the browser.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
Set when the editor is started.
An abstraction of an internal hierarchy node or edge
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
Codec for mxGraphs.
Graph event handler that handles selection.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
Internal model of a hierarchical graph.
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
deterministic,
tightenToSource,
scanRanksFromSinks)
Creates an internal ordered graph model using the vertices passed in.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
Base class for all layout algorithms in mxGraph.
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
Extends mxEventSource to implement a graph model.
function mxGraphModel(root)
Constructs a new graph model.
Implements the selection model for a graph.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
Extends mxEventSource to implement a view for a graph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
Custom encoder for mxGraphViews.
Implements the alignment of selection cells to other cells in the graph.
function mxGuide(graph,
states)
Constructs a new guide object.
Implementation of the hexagon shape.
function mxHexagon()
Constructs a new hexagon shape.
A hierarchical layout algorithm.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
The specific layout interface for hierarchical layouts.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
Encapsulates the URL, width and height of an image.
function mxImage(src,
width,
height)
Constructs a new image.
Maps from keys to base64 encoded images or file locations.
Creates a new image export instance to be used with an export canvas.
function mxImageExport()
Constructs a new image export.
Extends mxShape to implement an image shape.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
Event handler that listens to keystroke events.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
Extends mxShape to implement an image shape with a label.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
Implements a layout manager that updates the layout for a given transaction.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
Extends mxShape to implement a horizontal line shape.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
Optional global config variable to toggle loading of the CSS files when the library is initialized.
A singleton class that implements a simple console.
A static class that implements all markers for VML and SVG using a registry.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
An implementation of the first stage of the Sugiyama layout.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
Codec for mxGraphModels.
Implements animation for morphing cells.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
Base class for all mouse events in mxGraph.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
Defines invalid connections along with the error messages that they produce.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
Generic codec for JavaScript objects that implements a mapping between JavaScript objects and XML nodes that maps each field or element to an attribute or child node, and vice versa.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
Identity for JavaScript objects.
Implements an outline (aka overview) for a graph.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Event handler that pans and creates popupmenus.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
Implements a handler for panning.
Extends mxGraphLayout for arranging parallel edges.
Extends mxGraphLayout for partitioning the parent cell vertically or horizontally by filling the complete area with the child cells.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
An abstraction for creating VML and SVG paths.
function mxPath(format)
Constructs a path for the given format, which is one of svg or vml.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Implements a 2-dimensional vector with double precision coordinates.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
Extends mxShape to implement a polyline (a line with multiple points).
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Event handler that pans and creates popupmenus.
Constructs an event handler that creates a popupmenu.
Implements printing of a diagram across multiple pages.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
Extends mxShape to implement a rectangle shape.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
Implements internationalization.
Extends mxShape to implement a rhombus (aka diamond) shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
Action to change the root in a model.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
Codec for mxRootChanges.
Event handler that selects rectangular regions.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
An event handler that manages cell handlers and invokes their mouse event processing functions.
Action to change the current root in a view.
Session for sharing an mxGraphModel with other parties via a backend that acts as a multicaster for all changes.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
Base class for all shapes.
function mxShape()
Constructs a new shape.
In charge of moving cells after a resize.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
Extends mxGraphLayout to create a horizontal or vertical stack of the child vertices.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Implements a generic shape which is based on a XML node as a description.
A singleton class that provides a registry for stencils and the methods for painting those stencils onto a canvas or into a DOM.
Implements a shape based on a mxStencil.
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
function mxStencilShape(stencil)
Constructs a new generic shape.
Action to change a cell’s style in a model.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
Singleton class that acts as a global converter from string to object values in a style.
Defines the appearance of the cells in a graph.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
Codec for mxStylesheets.
Implements a canvas to be used with mxImageExport.
var mxSvgCanvas2D = function(root,
styleEnabled)
Constructs an SVG canvas.
Extends mxShape to implement a swimlane shape.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
Manager for swimlanes and nested swimlanes that sets the size of newly added swimlanes to that of their siblings, and propagates changes to the size of a swimlane to its siblings, if siblings is true, and its ancestors, if bubbling is true.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
Action to change a terminal in a model.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
Codec for mxTerminalChanges.
Extends mxShape to implement a text shape.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
Creates a toolbar inside a given DOM node.
function mxToolbar(container)
Constructs a toolbar in the specified container.
Graph event handler that displays tooltips.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
mxCell.prototype.mxTransient
List of members that should not be cloned inside clone.
Implementation of the triangle shape.
function mxTriangle()
Constructs a new triangle shape.
Implements a composite undoable edit.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
Implements a command history.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
Converts relative to absolute URLs.
A singleton class that provides cross-browser helper methods.
Action to change a user object in a model.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
Event handler for resizing cells.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
Action to change a cell’s visible state in a model.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
Basic window inside a document.
Implements a canvas to be used with mxImageExport.
var mxXmlCanvas2D = function(root)
Constructs a XML canvas.
XML HTTP request wrapper.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
+
mxGraphModel.prototype.maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
mxEditor.prototype.maintainSwimlanes
Specifies if the swimlanes should be kept at the same width or height depending on the setting of horizontalFlow.
makeDraggable: function(element,
graphF,
funct,
dragElement,
dx,
dy,
autoscroll,
scalePreview,
highlightDropTargets,
getDropTarget)
Configures the given DOM element to act as a drag source for the specified graph.
Stores the (key, value) pairs in this dictionary.
mxObjectCodec.prototype.mapping
Maps from from fieldnames to XML attribute names.
Marks the markedState and fires a mark event.
mxCellMarker.prototype.mark = function()
Marks the markedState and fires a mark event.
Fires after a cell has been marked or unmarked.
Specifies the event name for mark.
mxCellMarker.prototype.markCell = function(cell,
color)
Marks the given cell using the given color, or validColor if no color is specified.
mxCellMarker.prototype.markedState
Holds the marked mxCellState.
mxConnectionHandler.prototype.marker
Holds the mxTerminalMarker used for finding source and target cells.
mxEdgeHandler.prototype.marker
Holds the mxTerminalMarker which is used for highlighting terminals.
mxImageExport.prototype.markers
Holds implementations for the built-in markers.
Maps from markers names to functions to paint the markers.
mxMultiplicity.prototype.max
Defines the maximum number of connections for which this rule applies.
Defines the maximum size in pixels of the portion of the cell which is to be used as a connectable region.
mxGraphHandler.prototype.maxCells
Defines the maximum number of cells to paint subhandles for.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxSelectionCellsHandler.prototype.maxHandlers
Defines the maximum number of handlers to paint individually.
mxCylinder.prototype.maxHeight
Defines the maximum height of the top and bottom part of the cylinder shape.
Specifies the event name for maximize.
mxWindow.prototype.maximizeImage
URL of the image to be used for the maximize icon in the titlebar.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
mxCoordinateAssignment.prototype.maxIterations
The number of heuristic iterations to run.
mxFastOrganicLayout.prototype.maxIterations
Total number of iterations to run the layout though.
mxMedianHybridCrossingReduction.prototype.maxIterations
The maximum number of iterations to perform whilst reducing edge crossings.
mxMedianHybridCrossingReduction.prototype.maxNoImprovementIterations
The total number of crossings found in the best configuration so far
mxGraphAbstractHierarchyCell.prototype.maxRank
The maximum rank this cell occupies.
mxGraphHierarchyModel.prototype.maxRank
Stores the largest rank number allocated
A utility class used to track cells whilst sorting occurs on the median values.
function MedianCellSorter()
Constructs a new median cell sorter.
mxCoordinateAssignment.prototype.medianPos = function(i,
model)
Performs one median positioning sweep in one direction
mxMedianHybridCrossingReduction.prototype.medianRank = function(rankValue,
downwardSweep)
Attempts to minimise the median placement of connected cells on this rank and one of the adjacent ranks
MedianCellSorter.prototype.medianValue
The weighted value of the cell stored.
mxMedianHybridCrossingReduction.prototype.medianValue = function(
   connectedCells,
   rankValue
)
Calculates the median rank order positioning for the specified cell using the connected cells on the specified rank.
mxCoordinateAssignment.prototype.medianXValue = function(connectedCells,
rankValue)
Calculates the median position of the connected cell on the specified rank
mxCompactTreeLayout.prototype.merge = function(p1,
p2)
mxGraphModel.prototype.mergeChildren = function(from,
to,
cloneAllEdges)
Merges the children of the given cell into the given target cell inside this model.
mxXmlRequest.prototype.method
Specifies the request method.
mxMultiplicity.prototype.min
Defines the minimum number of connections for which this rule applies.
Defines the minimum size in pixels of the portion of the cell which is to be used as a connectable region.
mxFastOrganicLayout.prototype.minDistanceLimit
Minimal distance limit.
mxFastOrganicLayout.prototype.minDistanceLimitSquared
Cached version of minDistanceLimit squared.
mxCompactTreeLayout.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxCoordinateAssignment.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
Specifies the event name for minimize.
mxWindow.prototype.minimizeImage
URL of the image to be used for the minimize icon in the titlebar.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraphHandler.prototype.minimumSize
Specifies the minimum number of pixels for the width and height of a selection border.
mxWindow.prototype.minimumSize
mxRectangle that specifies the minimum width and height of the window.
mxCoordinateAssignment.prototype.minNode = function(model)
Performs one median positioning sweep in both directions
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxCoordinateAssignment.prototype.minPath = function(graph,
model)
Straightens out chains of virtual nodes where possibleacade to those stored after this layout processing step has completed.
mxGraphAbstractHierarchyCell.prototype.minRank
The minimum rank this cell occupies.
mxActor.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxConnector.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxCylinder.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxDoubleEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxLine.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxRhombus.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxShape.prototype.mixedModeHtml
Specifies if createHtml should be used in mixed Html mode.
mxStencilShape.prototype.mixedModeHtml
Always prefers VML in mixed mode for stencil shapes.
mxSwimlane.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mod: function(n,
m)
Returns the remainder of division of n by m.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
mxHierarchicalLayout.prototype.model
The internal mxGraphHierarchyModel formed of the layout.
mxSession.prototype.model
Reference to the enclosing mxGraphModel.
mxCellEditor.prototype.modified
Specifies if the label has been modified.
mxEditor.prototype.modified
True if the graph has been modified since it was last saved.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
mxCellTracker.prototype.mouseDown = function(sender,
me)
Ignores the event.
mxConnectionHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a new connection.
mxDragSource.prototype.mouseDown = function(evt)
Returns the drop target for the given graph and coordinates.
mxEdgeHandler.prototype.mouseDown = function(sender,
me)
Handles the event by checking if a special element of the handler was clicked, in which case the index parameter is non-null.
mxGraphHandler.prototype.mouseDown = function(sender,
me)
Handles the event by selecing the given cell and creating a handle for it.
mxOutline.prototype.mouseDown = function(sender,
me)
Handles the event by starting a translation or zoom.
mxPanningHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating the panning.
mxRubberband.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxSelectionCellsHandler.prototype.mouseDown = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseDown = function(sender,
me)
Handles the event by initiating a rubberband selection.
mxVertexHandler.prototype.mouseDown = function(sender,
me)
Handles the event if a handle has been clicked.
mxConnectionHandler.prototype.mouseDownCounter
Counts the number of mouseDown events since the start.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
mxCellTracker.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting the cell under the mousepointer if it is over the hotspot region of the cell.
mxConnectionHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview edge or by highlighting a possible source or target terminal.
mxDragSource.prototype.mouseMove = function(evt)
Gets the graph for the given event using getGraphForEvent, updates the currentGraph, calling dragEnter and dragExit on the new and old graph, respectively, and invokes dragOver if currentGraph is not null.
mxEdgeHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxGraphHandler.prototype.mouseMove = function(sender,
me)
Handles the event by highlighting possible drop targets and updating the preview.
mxOutline.prototype.mouseMove = function(sender,
me)
Handles the event by previewing the viewrect in graph and updating the rectangle that represents the viewrect in the outline.
mxPanningHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the panning on the graph.
mxRubberband.prototype.mouseMove = function(sender,
me)
Handles the event by updating therubberband selection.
mxSelectionCellsHandler.prototype.mouseMove = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the rubberband selection.
mxVertexHandler.prototype.mouseMove = function(sender,
me)
Handles the event by updating the preview.
mxCellTracker.prototype.mouseUp = function(sender,
me)
Handles the event by reseting the highlight.
mxConnectionHandler.prototype.mouseUp = function(sender,
me)
Handles the event by inserting the new connection.
mxDragSource.prototype.mouseUp = function(evt)
Processes the mouse up event and invokes drop, dragExit and stopDrag as required.
mxEdgeHandler.prototype.mouseUp = function(sender,
me)
Handles the event to applying the previewed changes on the edge by using moveLabel, connect or changePoints.
mxGraphHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the selection cells.
mxOutline.prototype.mouseUp = function(sender,
me)
Handles the event by applying the translation or zoom to graph.
mxPanningHandler.prototype.mouseUp = function(sender,
me)
Handles the event by setting the translation on the view or showing the popupmenu.
mxRubberband.prototype.mouseUp = function(sender,
me)
Handles the event by selecting the region of the rubberband using mxGraph.selectRegion.
mxSelectionCellsHandler.prototype.mouseUp = function(sender,
me)
Redirects the given event to the handlers.
mxTooltipHandler.prototype.mouseUp = function(sender,
me)
Handles the event by resetting the tooltip timer or hiding the existing tooltip.
mxVertexHandler.prototype.mouseUp = function(sender,
me)
Handles the event by applying the changes to the geometry.
mxGuide.prototype.move = function(bounds,
delta,
gridEnabled)
Moves the bounds by the given mxPoint and returnt the snapped point.
Specifies the event name for move.
Specifies the event name for moveCells.
Fires between begin- and endUpdate in moveCells.
Specifies the event name for moveEnd.
Specifies the event name for moveStart.
mxCompositeLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell by calling move on master or the first layout in layouts.
mxGraphLayout.prototype.moveCell = function(cell,
x,
y)
Notified when a cell is being moved in a parent that has automatic layout to update the cell state (eg.
mxPartitionLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxStackLayout.prototype.moveCell = function(cell,
x,
y)
Implements mxGraphLayout.moveCell.
mxGraph.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves or clones the specified cells and moves the cells or clones by the given amount, adding them to the optional target cell.
mxGraphHandler.prototype.moveCells = function(cells,
dx,
dy,
clone,
target,
evt)
Moves the given cells by the specified amount.
mxCircleLayout.prototype.moveCircle
Boolean specifying if the circle should be moved to the top, left corner specified by x0 and y0.
mxGraphHandler.prototype.moveEnabled
Specifies if moving is enabled.
mxLayoutManager.prototype.moveHandler
Holds the function that handles the move event.
Holds the function that handles the move event.
mxConnectionHandler.prototype.moveIconBack
Specifies if icons should be moved to the back of the overlay pane.
mxConnectionHandler.prototype.moveIconFront
Specifies if icons should be displayed inside the graph container instead of the overlay pane.
mxEdgeHandler.prototype.moveLabel = function(edgeState,
x,
y)
Changes the coordinates for the label of the given edge.
mxCompactTreeLayout.prototype.moveNode = function(node,
dx,
dy)
Moves the specified node and all of its children by the given amount.
mxHierarchicalLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxConnectionHandler.prototype.movePreviewAway
Switch to enable moving the preview away from the mousepointer.
mxEditor.prototype.movePropertiesDialog
Specifies if the properties dialog should be automatically moved near the cell it is displayed for, otherwise the dialog is not moved.
mxCellStatePreview.prototype.moveState = function(state,
dx,
dy,
add,
includeEdges)
mxPath.prototype.moveTo = function(x,
y)
Moves the cursor to (x, y).
moveTo: function(x,
y)
Moves the current path the given coordinates.
moveTo: function(x,
y)
Moves the current path the given coordinates.
mxCompactTreeLayout.prototype.moveTree
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Extends mxShape to implement an actor shape.
function mxActor(bounds,
fill,
stroke,
strokewidth)
Constructs a new actor shape.
Implements a basic animation in JavaScript.
function mxAnimation(delay)
Constructs an animation.
Extends mxShape to implement an arrow shape.
function mxArrow(points,
fill,
stroke,
strokewidth,
arrowWidth,
spacing,
endSize)
Constructs a new arrow shape.
Manager for automatically saving diagrams.
function mxAutoSaveManager(graph)
Constructs a new automatic layout for the given graph.
Cells are the elements of the graph model.
function mxCell(value,
geometry,
style)
Constructs a new cell to be used in a graph model.
Action to change the attribute of a cell’s user object.
function mxCellAttributeChange(cell,
attribute,
value)
Constructs a change of a attribute of the DOM node stored as the value of the given mxCell.
Codec for mxCells.
In-place editor for the graph.
function mxCellEditor(graph)
Constructs a new in-place editor for the specified graph.
A helper class to highlight cells.
function mxCellHighlight(graph,
highlightColor,
strokeWidth)
Constructs a cell highlight.
A helper class to process mouse locations and highlight cells.
function mxCellMarker(graph,
validColor,
invalidColor,
hotspot)
Constructs a new cell marker.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
function mxCellOverlay(image,
tooltip,
align,
verticalAlign,
offset,
cursor)
Constructs a new overlay using the given image and tooltip.
Implements a mechanism for temporary cell Ids.
Renders cells into a document object model.
function mxCellRenderer()
arrow, rectangle, ellipse, rhombus, image, line, label, cylinder, swimlane, connector, actor and cloud.
Represents the current state of a cell in a given mxGraphView.
function mxCellState(view,
cell,
style)
Constructs a new object that represents the current state of the given cell in the specified view.
Implements a live preview for moving cells.
function mxCellStatePreview(graph)
Constructs a move preview for the given graph.
Event handler that highlights cells.
function mxCellTracker(graph,
color,
funct)
Constructs an event handler that highlights cells.
Action to add or remove a child in a model.
function mxChildChange(model,
parent,
child,
index)
Constructs a change of a child in the specified model.
Codec for mxChildChanges.
Extends mxGraphLayout to implement a circluar layout for a given radius.
function mxCircleLayout(graph,
radius)
Constructs a new circular layout for the specified radius.
Bootstrapping mechanism for the mxGraph thin client.
Singleton that implements a clipboard for graph cells.
Extends mxActor to implement a cloud shape.
function mxCloud(bounds,
fill,
stroke,
strokewidth)
Constructs a new cloud shape.
XML codec for JavaScript object graphs.
function mxCodec(document)
Constructs an XML encoder/decoder for the specified owner document.
Singleton class that acts as a global registry for codecs.
Action to change a cell’s collapsed state in a model.
function mxCollapseChange(model,
cell,
collapsed)
Constructs a change of a collapsed state in the specified model.
Extends mxGraphLayout to implement a compact tree (Moen) algorithm.
function mxCompactTreeLayout(graph,
horizontal,
invert)
Constructs a new compact tree layout for the specified graph and orientation.
Constructs a new fast organic layout for the specified graph.
Constructs a new fast organic layout for the specified graph.
Allows to compose multiple layouts into a single layout.
function mxCompositeLayout(graph,
layouts,
master)
Constructs a new layout using the given layouts.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
function mxConnectionConstraint(point,
perimeter)
Constructs a new connection constraint for the given point and boolean arguments.
Graph event handler that creates new connections.
function mxConnectionHandler(graph,
factoryMethod)
Constructs an event handler that connects vertices using the specified factory method to create the new edges.
Extends mxShape to implement a connector shape.
function mxConnector(points,
stroke,
strokewidth)
Constructs a new connector shape.
Defines various global constants.
Handles constraints on connection targets.
function mxConstraintHandler(graph)
Constructs an new constraint handler.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxCoordinateAssignment(layout,
intraCellSpacing,
interRankCellSpacing,
orientation,
initialX,
parallelEdgeSpacing)
Creates a coordinate assignment.
Action to change the current root in a view.
function mxCurrentRootChange(view,
root)
Constructs a change of the current root in the given view.
Constructs a change of the current root in the given view.
Extends mxShape to implement an cylinder shape.
function mxCylinder(bounds,
fill,
stroke,
strokewidth)
Constructs a new cylinder shape.
Binds keycodes to actionnames in an editor.
function mxDefaultKeyHandler(editor)
Constructs a new default key handler for the mxEditor.graph in the given mxEditor.
Custom codec for configuring mxDefaultKeyHandlers.
Creates popupmenus for mouse events.
function mxDefaultPopupMenu(config)
Constructs a new popupmenu-factory based on given configuration.
Custom codec for configuring mxDefaultPopupMenus.
Toolbar for the editor.
function mxDefaultToolbar(container,
editor)
Constructs a new toolbar for the given container and editor.
Custom codec for configuring mxDefaultToolbars.
A wrapper class for an associative array with object keys.
Maintains the size of a div element in Internet Explorer.
function mxDivResizer(div,
container)
Constructs an object that maintains the size of a div element when the window is being resized.
Extends mxShape to implement a double ellipse shape.
function mxDoubleEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Wrapper to create a drag source from a DOM element so that the element can be dragged over a graph and dropped into the graph as a new cell.
function mxDragSource(element,
dropHandler)
Constructs a new drag source for the given element.
Graph event handler that reconnects edges and modifies control points and the edge label location.
function mxEdgeHandler(state)
Constructs an edge handler for the specified mxCellState.
Constructs an edge handler for the specified mxCellState.
Extends mxGraphLayout to implement an edge label layout.
function mxEdgeLabelLayout(graph,
radius)
Constructs a new edge label layout.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
function mxEditor(config)
Constructs a new editor.
Codec for mxEditors.
Provides animation effects.
Graph event handler that reconnects edges and modifies control points and the edge label location.
Extends mxShape to implement an ellipse shape.
function mxEllipse(bounds,
fill,
stroke,
strokewidth)
Constructs a new ellipse shape.
Cross-browser DOM event support.
The mxEventObject is a wrapper for all properties of a single event.
function mxEventObject(name)
Constructs a new event object with the specified name.
Base class for objects that dispatch named events.
Constructs a new dictionary which allows object to be used as keys.
function mxEventSource(eventSource)
Constructs a new event source.
Extends mxGraphLayout to implement a fast organic layout algorithm.
A simple class for creating HTML forms.
function mxForm(className)
Creates a HTML table using the specified classname.
Codec for mxValueChanges, mxStyleChanges, mxGeometryChanges, mxCollapseChanges and mxVisibleChanges.
var mxGenericChangeCodec = function(obj,
variable)
Factory function that creates a mxObjectCodec for the specified change and fieldname.
Extends mxRectangle to represent the geometry of a cell.
function mxGeometry(x,
y,
width,
height)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
Action to change a cell’s geometry in a model.
function mxGeometryChange(model,
cell,
geometry)
Constructs a change of a geometry in the specified model.
Extends mxEventSource to implement a graph component for the browser.
function mxGraph(container,
model,
renderHint,
stylesheet)
Constructs a new mxGraph in the specified container.
Set when the editor is started.
An abstraction of an internal hierarchy node or edge
function mxGraphAbstractHierarchyCell()
Constructs a new hierarchical layout algorithm.
Codec for mxGraphs.
Graph event handler that handles selection.
function mxGraphHandler(graph)
Constructs an event handler that creates handles for the selection cells.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyEdge(edges)
Constructs a hierarchy edge
Internal model of a hierarchical graph.
function mxGraphHierarchyModel(layout,
vertices,
roots,
parent,
deterministic,
tightenToSource,
scanRanksFromSinks)
Creates an internal ordered graph model using the vertices passed in.
An abstraction of a hierarchical edge for the hierarchy layout
function mxGraphHierarchyNode(cell)
Constructs an internal node to represent the specified real graph cell
Base class for all layout algorithms in mxGraph.
function mxGraphLayout(graph)
Constructs a new layout using the given layouts.
Extends mxEventSource to implement a graph model.
function mxGraphModel(root)
Constructs a new graph model.
Implements the selection model for a graph.
function mxGraphSelectionModel(graph)
Constructs a new graph selection model for the given mxGraph.
Extends mxEventSource to implement a view for a graph.
function mxGraphView(graph)
Constructs a new view for the given mxGraph.
Custom encoder for mxGraphViews.
Implements the alignment of selection cells to other cells in the graph.
function mxGuide(graph,
states)
Constructs a new guide object.
Implementation of the hexagon shape.
function mxHexagon()
Constructs a new hexagon shape.
A hierarchical layout algorithm.
function mxHierarchicalLayout(graph,
orientation,
deterministic)
Constructs a new hierarchical layout algorithm.
The specific layout interface for hierarchical layouts.
function mxHierarchicalLayoutStage()
Constructs a new hierarchical layout stage.
Encapsulates the URL, width and height of an image.
function mxImage(src,
width,
height)
Constructs a new image.
Maps from keys to base64 encoded images or file locations.
Creates a new image export instance to be used with an export canvas.
function mxImageExport()
Constructs a new image export.
Extends mxShape to implement an image shape.
function mxImageShape(bounds,
image,
fill,
stroke,
strokewidth)
Constructs a new image shape.
Event handler that listens to keystroke events.
function mxKeyHandler(graph,
target)
Constructs an event handler that executes functions bound to specific keystrokes.
Extends mxShape to implement an image shape with a label.
function mxLabel(bounds,
fill,
stroke,
strokewidth)
Constructs a new label shape.
Implements a layout manager that updates the layout for a given transaction.
function mxLayoutManager(graph)
Constructs a new automatic layout for the given graph.
Extends mxShape to implement a horizontal line shape.
function mxLine(bounds,
stroke,
strokewidth)
Constructs a new line shape.
Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
Optional global config variable to toggle loading of the CSS files when the library is initialized.
A singleton class that implements a simple console.
A static class that implements all markers for VML and SVG using a registry.
Sets the horizontal locations of node and edge dummy nodes on each layer.
function mxMedianHybridCrossingReduction(layout)
Creates a coordinate assignment.
An implementation of the first stage of the Sugiyama layout.
function mxMinimumCycleRemover(layout)
Creates a cycle remover for the given internal model.
Codec for mxGraphModels.
Implements animation for morphing cells.
function mxMorphing(graph,
steps,
ease,
delay)
Constructs an animation.
Base class for all mouse events in mxGraph.
function mxMouseEvent(evt,
state)
Constructs a new event object for the given arguments.
Defines invalid connections along with the error messages that they produce.
function mxMultiplicity(source,
type,
attr,
value,
min,
max,
validNeighbors,
countError,
typeError,
validNeighborsAllowed)
Instantiate class mxMultiplicity in order to describe allowed connections in a graph.
Generic codec for JavaScript objects that implements a mapping between JavaScript objects and XML nodes that maps each field or element to an attribute or child node, and vice versa.
function mxObjectCodec(template,
exclude,
idrefs,
mapping)
Constructs a new codec for the specified template object.
Identity for JavaScript objects.
Implements an outline (aka overview) for a graph.
function mxOutline(source,
container)
Constructs a new outline for the specified graph inside the given container.
Event handler that pans and creates popupmenus.
Constructs an event handler that creates a mxPopupMenu and pans the graph.
Implements a handler for panning.
Extends mxGraphLayout for arranging parallel edges.
Extends mxGraphLayout for partitioning the parent cell vertically or horizontally by filling the complete area with the child cells.
function mxPartitionLayout(graph,
horizontal,
spacing,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
An abstraction for creating VML and SVG paths.
function mxPath(format)
Constructs a path for the given format, which is one of svg or vml.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Implements a 2-dimensional vector with double precision coordinates.
function mxPoint(x,
y)
Constructs a new point for the optional x and y coordinates.
Extends mxShape to implement a polyline (a line with multiple points).
function mxPolyline(points,
stroke,
strokewidth)
Constructs a new polyline shape.
Event handler that pans and creates popupmenus.
Constructs an event handler that creates a popupmenu.
Implements printing of a diagram across multiple pages.
function mxPrintPreview(graph,
scale,
pageFormat,
border,
x0,
y0,
borderColor,
title,
pageSelector)
Constructs a new print preview for the given parameters.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
function mxRectangle(x,
y,
width,
height)
Constructs a new rectangle for the optional parameters.
Constructs a new rectangle for the optional parameters.
Extends mxShape to implement a rectangle shape.
function mxRectangleShape(bounds,
fill,
stroke,
strokewidth)
Constructs a new rectangle shape.
Implements internationalization.
Extends mxShape to implement a rhombus (aka diamond) shape.
function mxRhombus(bounds,
fill,
stroke,
strokewidth)
Constructs a new rhombus shape.
Action to change the root in a model.
function mxRootChange(model,
root)
Constructs a change of the root in the specified model.
Codec for mxRootChanges.
Event handler that selects rectangular regions.
function mxRubberband(graph)
Constructs an event handler that selects rectangular regions in the graph using rubberband selection.
An event handler that manages cell handlers and invokes their mouse event processing functions.
Action to change the current root in a view.
Session for sharing an mxGraphModel with other parties via a backend that acts as a multicaster for all changes.
function mxSession(model,
urlInit,
urlPoll,
urlNotify)
Constructs a new session using the given mxGraphModel and URLs to communicate with the backend.
Base class for all shapes.
function mxShape()
Constructs a new shape.
In charge of moving cells after a resize.
function mxSpaceManager(graph,
shiftRightwards,
shiftDownwards,
extendParents)
Constructs a new automatic layout for the given graph.
Extends mxGraphLayout to create a horizontal or vertical stack of the child vertices.
function mxStackLayout(graph,
horizontal,
spacing,
x0,
y0,
border)
Constructs a new stack layout layout for the specified graph, spacing, orientation and offset.
Implements a generic shape which is based on a XML node as a description.
A singleton class that provides a registry for stencils and the methods for painting those stencils onto a canvas or into a DOM.
Implements a shape based on a mxStencil.
Constructs a new generic shape by setting desc to the given XML node and invoking parseDescription and parseConstraints.
function mxStencilShape(stencil)
Constructs a new generic shape.
Action to change a cell’s style in a model.
function mxStyleChange(model,
cell,
style)
Constructs a change of a style in the specified model.
Singleton class that acts as a global converter from string to object values in a style.
Defines the appearance of the cells in a graph.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
Codec for mxStylesheets.
Implements a canvas to be used with mxImageExport.
var mxSvgCanvas2D = function(root,
styleEnabled)
Constructs an SVG canvas.
Extends mxShape to implement a swimlane shape.
function mxSwimlane(bounds,
fill,
stroke,
strokewidth)
Constructs a new swimlane shape.
Manager for swimlanes and nested swimlanes that sets the size of newly added swimlanes to that of their siblings, and propagates changes to the size of a swimlane to its siblings, if siblings is true, and its ancestors, if bubbling is true.
function mxSwimlaneManager(graph,
horizontal,
addEnabled,
resizeEnabled)
Constructs a new swimlane manager for the given graph.
Extends mxPoint to implement a 2-dimensional rectangle with double precision coordinates.
Action to change a terminal in a model.
function mxTerminalChange(model,
cell,
terminal,
source)
Constructs a change of a terminal in the specified model.
Codec for mxTerminalChanges.
Extends mxShape to implement a text shape.
function mxText(value,
bounds,
align,
valign,
color,
family,
size,
fontStyle,
spacing,
spacingTop,
spacingRight,
spacingBottom,
spacingLeft,
horizontal,
background,
border,
wrap,
clipped,
overflow,
labelPadding)
Constructs a new text shape.
Creates a toolbar inside a given DOM node.
function mxToolbar(container)
Constructs a toolbar in the specified container.
Graph event handler that displays tooltips.
function mxTooltipHandler(graph,
delay)
Constructs an event handler that displays tooltips with the specified delay (in milliseconds).
mxCell.prototype.mxTransient
List of members that should not be cloned inside clone.
Implementation of the triangle shape.
function mxTriangle()
Constructs a new triangle shape.
Implements a composite undoable edit.
function mxUndoableEdit(source,
significant)
Constructs a new undoable edit for the given source.
Implements a command history.
function mxUndoManager(size)
Constructs a new undo manager with the given history size.
Converts relative to absolute URLs.
A singleton class that provides cross-browser helper methods.
Action to change a user object in a model.
function mxValueChange(model,
cell,
value)
Constructs a change of a user object in the specified model.
Event handler for resizing cells.
function mxVertexHandler(state)
Constructs an event handler that allows to resize vertices and groups.
Action to change a cell’s visible state in a model.
function mxVisibleChange(model,
cell,
visible)
Constructs a change of a visible state in the specified model.
Basic window inside a document.
Implements a canvas to be used with mxImageExport.
var mxXmlCanvas2D = function(root)
Constructs a XML canvas.
XML HTTP request wrapper.
function mxXmlRequest(url,
params,
method,
async,
username,
password)
Constructs an XML HTTP request.
diff --git a/docs/js-api/index/General12.html b/docs/js-api/index/General12.html index 2212feee3..4cadc01e2 100644 --- a/docs/js-api/index/General12.html +++ b/docs/js-api/index/General12.html @@ -11,13 +11,13 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 name, mxEventObject
 neighbours, mxFastOrganicLayout
 nestedBestRanks, mxMedianHybridCrossingReduction
 nextId, mxGraphModel
 nextLayerConnectedCache, mxCoordinateAssignment
 nextLayerConnectedCells, mxGraphAbstractHierarchyCell
 NO_FO, mxClient
 node, mxShape
 nodeDistance, mxCompactTreeLayout
 NODETYPE_ATTRIBUTE, mxConstants
 NODETYPE_CDATA, mxConstants
 NODETYPE_COMMENT, mxConstants
 NODETYPE_DOCUMENT, mxConstants
 NODETYPE_DOCUMENT_FRAGMENT, mxConstants
 NODETYPE_DOCUMENTTYPE, mxConstants
 NODETYPE_ELEMENT, mxConstants
 NODETYPE_ENTITY, mxConstants
 NODETYPE_ENTITY_REFERENCE, mxConstants
 NODETYPE_NOTATION, mxConstants
 NODETYPE_PROCESSING_INSTRUCTION, mxConstants
 NODETYPE_TEXT, mxConstants
 NONE, mxConstants
 noReset, mxToolbar
 NORMALIZE, mxEvent
 normalizeImage, mxWindow
 normalKeys, mxKeyHandler
 notify
 NOTIFY
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
 nudge, WeightedCellSorter
O
 objects
 offset
 oldBounds, mxTemporaryCellStates
 oldScale, mxTemporaryCellStates
 oldStates, mxTemporaryCellStates
 onEncode, mxRootChangeCodec
 onInit
 opaqueVmlImages, mxLabel
 open
 OPEN
 order, mxCellRenderer
 Order, mxGraph
 ORDER_CELLS
 orderCells, mxGraph
 orderChanged, mxCellState
 ordered, mxGraph
 orderEdge, mxCellRenderer
 orientation
 origin, mxCellState
 OrthConnector, mxEdgeStyle
 outline
 OUTLINE_COLOR, mxConstants
 OUTLINE_HANDLE_FILLCOLOR, mxConstants
 OUTLINE_HANDLE_STROKECOLOR, mxConstants
 OUTLINE_STROKEWIDTH, mxConstants
 outlineResource, mxEditor
 Overlays, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 name, mxEventObject
 neighbours, mxFastOrganicLayout
 nestedBestRanks, mxMedianHybridCrossingReduction
 nextId, mxGraphModel
 nextLayerConnectedCache, mxCoordinateAssignment
 nextLayerConnectedCells, mxGraphAbstractHierarchyCell
 NO_FO, mxClient
 node, mxShape
 nodeDistance, mxCompactTreeLayout
 NODETYPE_ATTRIBUTE, mxConstants
 NODETYPE_CDATA, mxConstants
 NODETYPE_COMMENT, mxConstants
 NODETYPE_DOCUMENT, mxConstants
 NODETYPE_DOCUMENT_FRAGMENT, mxConstants
 NODETYPE_DOCUMENTTYPE, mxConstants
 NODETYPE_ELEMENT, mxConstants
 NODETYPE_ENTITY, mxConstants
 NODETYPE_ENTITY_REFERENCE, mxConstants
 NODETYPE_NOTATION, mxConstants
 NODETYPE_PROCESSING_INSTRUCTION, mxConstants
 NODETYPE_TEXT, mxConstants
 NONE, mxConstants
 noReset, mxToolbar
 NORMALIZE, mxEvent
 normalizeImage, mxWindow
 normalKeys, mxKeyHandler
 notify
 NOTIFY
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
 nudge, WeightedCellSorter
O
 objects
 offset
 oldBounds, mxTemporaryCellStates
 oldScale, mxTemporaryCellStates
 oldStates, mxTemporaryCellStates
 onEncode, mxRootChangeCodec
 onInit
 opaqueVmlImages, mxLabel
 open
 OPEN
 order, mxCellRenderer
 Order, mxGraph
 ORDER_CELLS
 orderCells, mxGraph
 orderChanged, mxCellState
 ordered, mxGraph
 orderEdge, mxCellRenderer
 orientation
 origin, mxCellState
 OrthConnector, mxEdgeStyle
 outline
 OUTLINE_COLOR, mxConstants
 OUTLINE_HANDLE_FILLCOLOR, mxConstants
 OUTLINE_HANDLE_STROKECOLOR, mxConstants
 OUTLINE_STROKEWIDTH, mxConstants
 outlineResource, mxEditor
 Overlays, mxGraph
-
mxEventObject.prototype.name
Holds the name.
mxFastOrganicLayout.prototype.neighbours
Local copy of cell neighbours.
mxMedianHybridCrossingReduction.prototype.nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so far
mxGraphModel.prototype.nextId
Specifies the next Id to be created.
mxCoordinateAssignment.prototype.nextLayerConnectedCache
A store of connections to the layer above for speed
mxGraphAbstractHierarchyCell.prototype.nextLayerConnectedCells
A cached version of the cells this cell connects to on the next layer up
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
mxShape.prototype.node
Holds the outermost DOM node that represents this shape.
mxCompactTreeLayout.prototype.nodeDistance
Holds the nodeDistance.
DOM node of type ATTRIBUTE.
DOM node of type CDATA.
DOM node of type COMMENT.
DOM node of type DOCUMENT.
DOM node of type DOCUMENT_FRAGMENT.
DOM node of type DOCUMENTTYPE.
DOM node of type ELEMENT.
DOM node of type ENTITY.
DOM node of type ENTITY_REFERENCE.
DOM node of type NOTATION.
DOM node of type PROCESSING_INSTRUCTION.
DOM node of type TEXT.
Defines the value for none.
mxToolbar.prototype.noReset
Specifies if resetMode requires a forced flag of true for resetting the current mode in the toolbar.
Specifies the event name for normalize.
mxWindow.prototype.normalizeImage
URL of the image to be used for the normalize icon in the titlebar.
mxKeyHandler.prototype.normalKeys
Maps from keycodes to functions for non-pressed control keys.
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
Specifies the event name for notify.
Same as mxEvent.CHANGE, this event can be used for classes that need to implement a sync mechanism between this model and, say, a remote model.
Fires after a notification was sent in notify.
Defines the SVG namespace.
Defines the XHTML namespace.
Defines the XLink namespace.
WeightedCellSorter.prototype.nudge
Whether or not to flip equal weight values.
+
mxEventObject.prototype.name
Holds the name.
mxFastOrganicLayout.prototype.neighbours
Local copy of cell neighbours.
mxMedianHybridCrossingReduction.prototype.nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so far
mxGraphModel.prototype.nextId
Specifies the next Id to be created.
mxCoordinateAssignment.prototype.nextLayerConnectedCache
A store of connections to the layer above for speed
mxGraphAbstractHierarchyCell.prototype.nextLayerConnectedCells
A cached version of the cells this cell connects to on the next layer up
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
mxShape.prototype.node
Holds the outermost DOM node that represents this shape.
mxCompactTreeLayout.prototype.nodeDistance
Holds the nodeDistance.
DOM node of type ATTRIBUTE.
DOM node of type CDATA.
DOM node of type COMMENT.
DOM node of type DOCUMENT.
DOM node of type DOCUMENT_FRAGMENT.
DOM node of type DOCUMENTTYPE.
DOM node of type ELEMENT.
DOM node of type ENTITY.
DOM node of type ENTITY_REFERENCE.
DOM node of type NOTATION.
DOM node of type PROCESSING_INSTRUCTION.
DOM node of type TEXT.
Defines the value for none.
mxToolbar.prototype.noReset
Specifies if resetMode requires a forced flag of true for resetting the current mode in the toolbar.
Specifies the event name for normalize.
mxWindow.prototype.normalizeImage
URL of the image to be used for the normalize icon in the titlebar.
mxKeyHandler.prototype.normalKeys
Maps from keycodes to functions for non-pressed control keys.
mxSession.prototype.notify = function(xml,
onLoad,
onError)
Sends out the specified XML to urlNotify and fires a notify event.
mxUndoableEdit.prototype.notify = function()
Hook to notify any listeners of the changes after an undo or redo has been carried out.
Specifies the event name for notify.
Same as mxEvent.CHANGE, this event can be used for classes that need to implement a sync mechanism between this model and, say, a remote model.
Fires after a notification was sent in notify.
Defines the SVG namespace.
Defines the XHTML namespace.
Defines the XLink namespace.
WeightedCellSorter.prototype.nudge
Whether or not to flip equal weight values.
-
mxCodec.prototype.objects
Maps from IDs to objects.
Contains all objects where any listener was added using addListener.
mxCellOverlay.prototype.offset
Holds the offset as an mxPoint.
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
mxGeometry.prototype.offset
For edges, this holds the offset (in pixels) from the position defined by x and y on the edge.
mxTemporaryCellStates.prototype.oldBounds
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldScale
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldStates
Holds the height of the rectangle.
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxLabel.prototype.opaqueVmlImages
Specifies if all VML images should be rendered without transparency, that is, if the current opacity should be ignored for images.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
Fires after a file was opened in open.
Specifies the event name for open.
mxCellRenderer.prototype.order = function(state)
Orders the DOM node of the shape for the given state according to the position of the corresponding cell in the graph model.
Specifies the event name for orderCells.
Fires between begin- and endUpdate in orderCells.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxCellState.prototype.orderChanged
Specifies if the cell has changed order and the display needs to be updated.
mxGraph.prototype.ordered
Specifies if the display should reflect the order of the cells in the model.
mxCellRenderer.prototype.orderEdge = function(state)
Orders the DOM node of the shape for the given edge’s state according to the mxGraph.keepEdgesInBackground and mxGraph.keepEdgesInBackground rules.
mxCoordinateAssignment.prototype.orientation
The position of the root ( start ) node(s) relative to the rest of the laid out graph.
mxHierarchicalLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxCellState.prototype.origin
mxPoint that holds the origin for all child cells.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
mxEditor.prototype.outline
Reference to the mxWindow that contains the outline.
Reference to the outline mxGraph.
Defines the color to be used for the outline rectangle border.
Defines the color to be used for the outline sizer fill color.
Defines the color to be used for the outline sizer stroke color.
Defines the strokewidth to be used for the outline rectangle stroke width.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
+
mxCodec.prototype.objects
Maps from IDs to objects.
Contains all objects where any listener was added using addListener.
mxCellOverlay.prototype.offset
Holds the offset as an mxPoint.
mxCompactTreeLayout.prototype.offset = function(p1,
p2,
a1,
a2,
b1,
b2)
mxGeometry.prototype.offset
For edges, this holds the offset (in pixels) from the position defined by x and y on the edge.
mxTemporaryCellStates.prototype.oldBounds
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldScale
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldStates
Holds the height of the rectangle.
Encodes the child recursively.
Called from within the constructor.
Called from within the constructor.
mxLabel.prototype.opaqueVmlImages
Specifies if all VML images should be rendered without transparency, that is, if the current opacity should be ignored for images.
mxEditor.prototype.open = function (filename)
Opens the specified file synchronously and parses it using readGraphModel.
mxPrintPreview.prototype.open = function(css)
Shows the print preview window.
open: function(filename)
Opens the specified file from the local filesystem and returns the contents of the file as a string.
Fires after a file was opened in open.
Specifies the event name for open.
mxCellRenderer.prototype.order = function(state)
Orders the DOM node of the shape for the given state according to the position of the corresponding cell in the graph model.
Specifies the event name for orderCells.
Fires between begin- and endUpdate in orderCells.
mxGraph.prototype.orderCells = function(back,
cells)
Moves the given cells to the front or back.
mxCellState.prototype.orderChanged
Specifies if the cell has changed order and the display needs to be updated.
mxGraph.prototype.ordered
Specifies if the display should reflect the order of the cells in the model.
mxCellRenderer.prototype.orderEdge = function(state)
Orders the DOM node of the shape for the given edge’s state according to the mxGraph.keepEdgesInBackground and mxGraph.keepEdgesInBackground rules.
mxCoordinateAssignment.prototype.orientation
The position of the root ( start ) node(s) relative to the rest of the laid out graph.
mxHierarchicalLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxCellState.prototype.origin
mxPoint that holds the origin for all child cells.
OrthConnector: function(state,
source,
target,
points,
result)
Implements a local orthogonal router between the given cells.
mxEditor.prototype.outline
Reference to the mxWindow that contains the outline.
Reference to the outline mxGraph.
Defines the color to be used for the outline rectangle border.
Defines the color to be used for the outline sizer fill color.
Defines the color to be used for the outline sizer stroke color.
Defines the strokewidth to be used for the outline rectangle stroke width.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
diff --git a/docs/js-api/index/General13.html b/docs/js-api/index/General13.html index a4a7dba0b..5f4401baf 100644 --- a/docs/js-api/index/General13.html +++ b/docs/js-api/index/General13.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 PAGE_FORMAT_A4_PORTRAIT, mxConstants
 PAGE_FORMAT_LETTER_PORTRAIT, mxConstants
 pageBreakColor, mxGraph
 pageBreakDashed, mxGraph
 pageBreaksVisible, mxGraph
 pageCount, mxPrintPreview
 pageFormat
 pageScale, mxGraph
 pageSelector, mxPrintPreview
 pageVisible, mxGraph
 paintMarker, mxMarker
 PAN
 PAN_END
 PAN_START
 panDx, mxGraph
 panDy, mxGraph
 panGraph
 panningEnabled, mxPanningHandler
 para, mxUtils
 parallelEdgeSpacing
 params, mxXmlRequest
 parent
 parentBorder, mxHierarchicalLayout
 parentForCellChanged, mxGraphModel
 parentsChanged, mxCompactTreeLayout
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 password, mxXmlRequest
 paste, mxClipboard
 path, mxPath
 PATH_SEPARATOR, mxCellPath
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 placeLabels, mxEdgeLabelLayout
 placementStage, mxHierarchicalLayout
 point, mxConnectionConstraint
 pointImage, mxConstraintHandler
 points
 poll, mxSession
 polling, mxSession
 popup
 popupHandler, mxEditor
 portsEnabled, mxGraph
 post, mxUtils
 POST
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postfix, mxGraphModel
 postParameterName, mxEditor
 postProcessCellStyle, mxGraph
 preferHtml, mxEdgeHandler
 preferModeHtml
 preferPageSize, mxGraph
 prefHozEdgeSep
 prefix, mxGraphModel
 prefVertEdgeOff
 preserveImageAspect, mxImageShape
 previewColor, mxGraphHandler
 previewElement, mxDragSource
 previewEnabled, mxPanningHandler
 previousLayerConnectedCache, mxCoordinateAssignment
 previousLayerConnectedCells, mxGraphAbstractHierarchyCell
 print, mxPrintPreview
 printOverlays, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 promoteEdges, mxHierarchicalLayout
 prompt, mxUtils
 properties, mxEventObject
 propertiesHeight, mxEditor
 propertiesResource, mxEditor
 propertiesWidth, mxEditor
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 PAGE_FORMAT_A4_PORTRAIT, mxConstants
 PAGE_FORMAT_LETTER_PORTRAIT, mxConstants
 pageBreakColor, mxGraph
 pageBreakDashed, mxGraph
 pageBreaksVisible, mxGraph
 pageCount, mxPrintPreview
 pageFormat
 pageScale, mxGraph
 pageSelector, mxPrintPreview
 pageVisible, mxGraph
 paintMarker, mxMarker
 PAN
 PAN_END
 PAN_START
 panDx, mxGraph
 panDy, mxGraph
 panGraph
 panningEnabled, mxPanningHandler
 para, mxUtils
 parallelEdgeSpacing
 params, mxXmlRequest
 parent
 parentBorder, mxHierarchicalLayout
 parentForCellChanged, mxGraphModel
 parentsChanged, mxCompactTreeLayout
 parse, mxResources
 parseConstraint, mxStencil
 parseConstraints, mxStencil
 parseDescription, mxStencil
 parseXml, mxUtils
 password, mxXmlRequest
 paste, mxClipboard
 path, mxPath
 PATH_SEPARATOR, mxCellPath
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 placeLabels, mxEdgeLabelLayout
 placementStage, mxHierarchicalLayout
 point, mxConnectionConstraint
 pointImage, mxConstraintHandler
 points
 poll, mxSession
 polling, mxSession
 popup
 popupHandler, mxEditor
 portsEnabled, mxGraph
 post, mxUtils
 POST
 postConfigureShape, mxCellRenderer
 postDiagram, mxEditor
 postfix, mxGraphModel
 postParameterName, mxEditor
 postProcessCellStyle, mxGraph
 preferHtml, mxEdgeHandler
 preferModeHtml
 preferPageSize, mxGraph
 prefHozEdgeSep
 prefix, mxGraphModel
 prefVertEdgeOff
 preserveImageAspect, mxImageShape
 previewColor, mxGraphHandler
 previewElement, mxDragSource
 previewEnabled, mxPanningHandler
 previousLayerConnectedCache, mxCoordinateAssignment
 previousLayerConnectedCells, mxGraphAbstractHierarchyCell
 print, mxPrintPreview
 printOverlays, mxPrintPreview
 printScreen, mxUtils
 process, mxCellMarker
 processChange, mxGraph
 processDelta, mxSession
 processEdit, mxSession
 processInclude, mxObjectCodec
 processReversedEdge, mxCoordinateAssignment
 processState, mxSession
 promoteEdges, mxHierarchicalLayout
 prompt, mxUtils
 properties, mxEventObject
 propertiesHeight, mxEditor
 propertiesResource, mxEditor
 propertiesWidth, mxEditor
 ptSeqDistSq, mxUtils
 put, mxDictionary
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
-
Defines the rectangle for the A4 portrait page format.
Defines the rectangle for the Letter portrait page format.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxPrintPreview.prototype.pageCount
Holds the actual number of pages in the preview.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxPrintPreview.prototype.pageFormat
Holds the mxRectangle that defines the page format.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxPrintPreview.prototype.pageSelector
Boolean that specifies if the page selector should be displayed.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
paintMarker: function(node,
type,
p0,
pe,
color,
strokewidth,
size,
scale,
x0,
y0,
source,
style)
Paints the given marker.
Specifies the event name for pan.
Fires while handle is processing events.
Specifies the event name for panEnd.
Fires when the panning handler changes its active state to false.
Specifies the event name for panStart.
Fires when the panning handler changes its active state to true.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxCoordinateAssignment.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges.
mxHierarchicalLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxXmlRequest.prototype.params
Holds the form encoded data for the POST request.
mxCell.prototype.parent
Reference to the parent cell.
mxGraphHierarchyModel.prototype.parent
The parent cell whose children are being laid out
mxGraphLayout.prototype.parent
The parent cell of the layout, if any
mxHierarchicalLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
mxCompactTreeLayout.prototype.parentsChanged
A set of the parents that need updating based on children process as part of the layout
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
mxXmlRequest.prototype.password
Specifies the password to be used for authentication.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxPath.prototype.path
Contains the textual representation of the path as an array.
Defines the separator between the path components.
mxConnectionConstraint.prototype.perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
Name of the ellipse perimeter.
Name of the rectangle perimeter.
Name of the rhombus perimeter.
PERIMETER_TRIANGLE: 'trianglePerimeter' }
Name of the triangle perimeter.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxConnectionConstraint.prototype.point
mxPoint that specifies the fixed location of the connection point.
mxConstraintHandler.prototype.pointImage
mxImage to be used as the image for fixed connection points.
mxGeometry.prototype.points
Array of mxPoints which specifies the control points along the edge.
mxShape.prototype.points
Holds the array of mxPoints that specify the points of this shape.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxSession.prototype.polling
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
mxEditor.prototype.popupHandler
Holds a mxDefaultPopupMenu for displaying popupmenus.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
Fires if a successful response was received in postDiagram.
Specifies the event name for post.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraphModel.prototype.postfix
Defines the postfix of new Ids.
mxEditor.prototype.postParameterName
Specifies if the name of the post parameter that contains the diagram data in a post request to the server.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxEdgeHandler.prototype.preferHtml
Specifies if bends should be added to the graph container.
mxActor.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxConnector.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxCylinder.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxDoubleEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxLine.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxShape.prototype.preferModeHtml
Specifies if createHtml should be used in prefer Html mode.
mxStencilShape.prototype.preferModeHtml
Always prefers VML in prefer HTML mode for stencil shapes.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxCompactTreeLayout.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxCoordinateAssignment.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxGraphModel.prototype.prefix
Defines the prefix of new Ids.
mxCompactTreeLayout.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxCoordinateAssignment.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxImageShape.prototype.preserveImageAspect
Switch to preserve image aspect.
mxGraphHandler.prototype.previewColor
Specifies the color of the preview shape.
mxDragSource.prototype.previewElement
Optional mxRectangle that specifies the unscaled size of the preview.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxCoordinateAssignment.prototype.previousLayerConnectedCache
A store of connections to the layer below for speed
mxGraphAbstractHierarchyCell.prototype.previousLayerConnectedCells
A cached version of the cells this cell connects to on the next layer down
mxPrintPreview.prototype.print = function()
Opens the print preview and shows the print dialog.
mxPrintPreview.prototype.printOverlays
Specifies if overlays should be printed.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
mxHierarchicalLayout.prototype.promoteEdges
Whether or not to promote edges that terminate on vertices with different but common ancestry to appear connected to the highest siblings in the ancestry chains
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
mxEventObject.prototype.properties
Holds the properties as an associative array.
mxEditor.prototype.propertiesHeight
Specifies the height of the properties window in pixels.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.propertiesWidth
Specifies the width of the properties window in pixels.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
+
Defines the rectangle for the A4 portrait page format.
Defines the rectangle for the Letter portrait page format.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxPrintPreview.prototype.pageCount
Holds the actual number of pages in the preview.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxPrintPreview.prototype.pageFormat
Holds the mxRectangle that defines the page format.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxPrintPreview.prototype.pageSelector
Boolean that specifies if the page selector should be displayed.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
paintMarker: function(node,
type,
p0,
pe,
color,
strokewidth,
size,
scale,
x0,
y0,
source,
style)
Paints the given marker.
Specifies the event name for pan.
Fires while handle is processing events.
Specifies the event name for panEnd.
Fires when the panning handler changes its active state to false.
Specifies the event name for panStart.
Fires when the panning handler changes its active state to true.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxGraph.prototype.panGraph = function(dx,
dy)
Shifts the graph display by the given amount.
mxPanningHandler.prototype.panGraph = function(dx,
dy)
Pans graph by the given amount.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
para: function(parent,
text)
Appends a new paragraph with the given text to the specified parent and returns the paragraph.
mxCoordinateAssignment.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges.
mxHierarchicalLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxXmlRequest.prototype.params
Holds the form encoded data for the POST request.
mxCell.prototype.parent
Reference to the parent cell.
mxGraphHierarchyModel.prototype.parent
The parent cell whose children are being laid out
mxGraphLayout.prototype.parent
The parent cell of the layout, if any
mxHierarchicalLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxGraphModel.prototype.parentForCellChanged = function(cell,
parent,
index)
Inner callback to update the parent of a cell using mxCell.insert on the parent and return the previous parent.
mxCompactTreeLayout.prototype.parentsChanged
A set of the parents that need updating based on children process as part of the layout
parse: function(text)
Parses the key, value pairs in the specified text and stores them as local resources.
mxStencil.prototype.parseConstraint = function(node)
Parses the given XML node and returns its mxConnectionConstraint.
mxStencil.prototype.parseConstraints = function()
Reads the constraints from desc into constraints using parseConstraint.
mxStencil.prototype.parseDescription = function()
Reads w0, h0, aspect, bgNodes and fgNodes from desc.
parseXml: function()
Parses the specified XML string into a new XML document and returns the new document.
mxXmlRequest.prototype.password
Specifies the password to be used for authentication.
paste: function(graph)
Pastes the cells into the specified graph restoring the relation to parents, if possible.
mxPath.prototype.path
Contains the textual representation of the path as an array.
Defines the separator between the path components.
mxConnectionConstraint.prototype.perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
Name of the ellipse perimeter.
Name of the rectangle perimeter.
Name of the rhombus perimeter.
PERIMETER_TRIANGLE: 'trianglePerimeter' }
Name of the triangle perimeter.
mxEdgeLabelLayout.prototype.placeLabels = function(v,
e)
Places the labels of the given edges.
mxHierarchicalLayout.prototype.placementStage = function(initialX,
parent)
Executes the placement stage using mxCoordinateAssignment.
mxConnectionConstraint.prototype.point
mxPoint that specifies the fixed location of the connection point.
mxConstraintHandler.prototype.pointImage
mxImage to be used as the image for fixed connection points.
mxGeometry.prototype.points
Array of mxPoints which specifies the control points along the edge.
mxShape.prototype.points
Holds the array of mxPoints that specify the points of this shape.
mxSession.prototype.poll = function()
Sends an asynchronous GET request to urlPoll.
mxSession.prototype.polling
mxPopupMenu.prototype.popup = function(x,
y,
cell,
evt)
Shows the popup menu for the given event and cell.
popup: function(content,
isInternalWindow)
Shows the specified text content in a new mxWindow or a new browser window if isInternalWindow is false.
mxEditor.prototype.popupHandler
Holds a mxDefaultPopupMenu for displaying popupmenus.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
post: function(url,
params,
onload,
onerror)
Posts the specified params to the given URL asynchronously and invokes the given functions depending on the request status.
Fires if a successful response was received in postDiagram.
Specifies the event name for post.
mxCellRenderer.prototype.postConfigureShape = function(state)
Replaces any reserved words used for attributes, eg.
mxEditor.prototype.postDiagram = function (url,
data)
Hook for subclassers to override the posting of a diagram represented by the given node to the given URL.
mxGraphModel.prototype.postfix
Defines the postfix of new Ids.
mxEditor.prototype.postParameterName
Specifies if the name of the post parameter that contains the diagram data in a post request to the server.
mxGraph.prototype.postProcessCellStyle = function(style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
mxEdgeHandler.prototype.preferHtml
Specifies if bends should be added to the graph container.
mxActor.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxConnector.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxCylinder.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxDoubleEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxLine.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxShape.prototype.preferModeHtml
Specifies if createHtml should be used in prefer Html mode.
mxStencilShape.prototype.preferModeHtml
Always prefers VML in prefer HTML mode for stencil shapes.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxCompactTreeLayout.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxCoordinateAssignment.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxGraphModel.prototype.prefix
Defines the prefix of new Ids.
mxCompactTreeLayout.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxCoordinateAssignment.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxImageShape.prototype.preserveImageAspect
Switch to preserve image aspect.
mxGraphHandler.prototype.previewColor
Specifies the color of the preview shape.
mxDragSource.prototype.previewElement
Optional mxRectangle that specifies the unscaled size of the preview.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxCoordinateAssignment.prototype.previousLayerConnectedCache
A store of connections to the layer below for speed
mxGraphAbstractHierarchyCell.prototype.previousLayerConnectedCells
A cached version of the cells this cell connects to on the next layer down
mxPrintPreview.prototype.print = function()
Opens the print preview and shows the print dialog.
mxPrintPreview.prototype.printOverlays
Specifies if overlays should be printed.
printScreen: function(graph)
Prints the specified graph using a new window and the built-in print dialog.
mxCellMarker.prototype.process = function(me)
Processes the given event and cell and marks the state returned by getState with the color returned by getMarkerColor.
mxGraph.prototype.processChange = function(change)
Processes the given change and invalidates the respective cached data in view.
mxSession.prototype.processDelta = function(node)
Processes the given delta node which contains a sequence of edits which in turn map to one transaction on the remote model each.
mxSession.prototype.processEdit = function(node)
Processes the given edit by executing its changes and firing the required events via the model.
mxObjectCodec.prototype.processInclude = function(dec,
node,
into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
mxCoordinateAssignment.prototype.processReversedEdge = function(graph,
model)
Hook to add additional processing
mxSession.prototype.processState = function(node)
Processes the given state node which contains the current state of the remote model.
mxHierarchicalLayout.prototype.promoteEdges
Whether or not to promote edges that terminate on vertices with different but common ancestry to appear connected to the highest siblings in the ancestry chains
prompt: function(message,
defaultValue)
Displays the given message in a prompt dialog.
mxEventObject.prototype.properties
Holds the properties as an associative array.
mxEditor.prototype.propertiesHeight
Specifies the height of the properties window in pixels.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.propertiesWidth
Specifies the width of the properties window in pixels.
Returns the square distance between a segment and a point.
mxDictionary.prototype.put = function(key,
value)
Stores the value under the given key and returns the previous value for that key.
mxStylesheet.prototype.putCellStyle = function(name,
style)
Stores the given map of key, value pairs under the given name in styles.
mxStylesheet.prototype.putDefaultEdgeStyle = function(style)
Sets the default style for edges using defaultEdge as the stylename.
mxStylesheet.prototype.putDefaultVertexStyle = function(style)
Sets the default style for vertices using defaultVertex as the stylename.
mxImageBundle.prototype.putImage = function(key,
value,
fallback)
Adds the specified entry to the map.
mxCodec.prototype.putObject = function(id,
obj)
Assoiates the given object with the given ID and returns the given object.
putValue: function(name,
obj)
Puts the given object into the registry under the given name.
diff --git a/docs/js-api/index/General14.html b/docs/js-api/index/General14.html index 3a5a855c9..a77ecb847 100644 --- a/docs/js-api/index/General14.html +++ b/docs/js-api/index/General14.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
Q
 quadTo
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
Q
 quadTo
-
mxPath.prototype.quadTo = function(x1,
y1,
x,
y)
Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
+
mxPath.prototype.quadTo = function(x1,
y1,
x,
y)
Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
quadTo: function(x1,
y1,
x2,
y2)
Adds a quadratic curve to the current path.
diff --git a/docs/js-api/index/General15.html b/docs/js-api/index/General15.html index 3872af7c1..21183d759 100644 --- a/docs/js-api/index/General15.html +++ b/docs/js-api/index/General15.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks, mxGraphHierarchyModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint, mxRubberband
 repaintGraph, mxUtils
 reparseVml, mxShape
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetViewOnRootChange, mxGraph
 resize, mxDivResizer
 RESIZE, mxEvent
 RESIZE_CELLS
 RESIZE_END, mxEvent
 RESIZE_START, mxEvent
 resizeCell
 resizeCells, mxGraph
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeHeight, mxDivResizer
 resizeLast, mxStackLayout
 resizeParent
 resizeSwimlane, mxSwimlaneManager
 resizeVertices, mxPartitionLayout
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 resources, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root, mxGraphModel
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 roundedCrispSvg, mxShape
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankCoordinates, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 rankMedianPosition, mxCoordinateAssignment
 ranks, mxGraphHierarchyModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 readGraphModel, mxEditor
 receive, mxSession
 RECEIVE
 received, mxSession
 reconfigure
 rect
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 rectangleIntersectsSegment, mxUtils
 RectanglePerimeter, mxPerimeter
 redirectMouseEvents, mxEvent
 redo
 REDO
 redone, mxUndoableEdit
 redraw
 redrawBackgroundImage, mxGraphView
 redrawCellOverlays, mxCellRenderer
 redrawControl, mxCellRenderer
 redrawForeignObject, mxText
 redrawHtml
 redrawHtmlTable, mxText
 redrawIcons, mxConnectionHandler
 redrawInnerBends
 redrawLabel, mxCellRenderer
 redrawMarker, mxConnector
 redrawPageBreaks, mxGraph
 redrawPath
 redrawShape, mxStencilShape
 redrawSvg
 redrawSvgTextNodes, mxText
 redrawTextbox, mxText
 redrawVml
 reduceTemperature, mxFastOrganicLayout
 reference, mxCodec
 refresh
 REFRESH
 refreshHandler, mxSelectionCellsHandler
 refreshTasks, mxEditor
 register, mxCodecRegistry
 registerShape, mxCellRenderer
 relative, mxGeometry
 relativeCcw, mxUtils
 release, mxEvent
 releaseSvgClip, mxText
 remove
 REMOVE_CELLS
 REMOVE_CELLS_FROM_PARENT
 REMOVE_OVERLAY
 removeAllListeners, mxEvent
 removeAllStylenames, mxUtils
 removeCell, mxGraphSelectionModel
 removeCellOverlay, mxGraph
 removeCellOverlays, mxGraph
 removeCells
 removeCellsFromParent
 removeCursors, mxUtils
 removeEdge, mxCell
 removeEnabled, mxEdgeHandler
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeListener
 removeMouseListener, mxGraph
 removePoint, mxEdgeHandler
 removeSelectionCell, mxGraph
 removeSelectionCells, mxGraph
 removeState, mxGraphView
 removeStateForCell, mxGraph
 removeStylename, mxUtils
 removeWhitespace, mxUtils
 renderDom, mxStencil
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 renderPage, mxPrintPreview
 repaint, mxRubberband
 repaintGraph, mxUtils
 reparseVml, mxShape
 replaceLinefeeds, mxText
 repositionValid, mxCoordinateAssignment
 request, mxXmlRequest
 reset
 resetEdge, mxGraph
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetFirstTime, mxEditor
 resetHandler
 resetHistory, mxEditor
 resetMode, mxToolbar
 resetTimer, mxTooltipHandler
 resetViewOnRootChange, mxGraph
 resize, mxDivResizer
 RESIZE, mxEvent
 RESIZE_CELLS
 RESIZE_END, mxEvent
 RESIZE_START, mxEvent
 resizeCell
 resizeCells, mxGraph
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeHeight, mxDivResizer
 resizeLast, mxStackLayout
 resizeParent
 resizeSwimlane, mxSwimlaneManager
 resizeVertices, mxPartitionLayout
 resizeWidth, mxDivResizer
 resolve, mxCellPath
 resolveColor, mxCellRenderer
 resources, mxResources
 restore
 restoreClone, mxGraphModel
 resume, mxSession
 RESUME
 revalidate, mxGraphView
 revalidateState, mxCellStatePreview
 reverse, mxObjectCodec
 reversePortConstraints, mxUtils
 RhombusPerimeter, mxPerimeter
 root, mxGraphModel
 ROOT
 rootChanged, mxGraphModel
 roots
 rotate
 ROTATION_HANDLE, mxEvent
 roundedCrispSvg, mxShape
 roundrect
 route, mxParallelEdgeLayout
 rtrim, mxUtils
 run, mxHierarchicalLayout
-
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Specifies the event name for resizeStart.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
Boolean specifying if the height should be updated.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxGraphLayouts that this layout contains.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
mxShape.prototype.roundedCrispSvg
Specifies if crisp rendering should be enabled for rounded shapes.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
+
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
mxCoordinateAssignment.prototype.rankCoordinates = function(rankValue,
graph,
model)
Sets up the layout in an initial positioning.
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxCoordinateAssignment.prototype.rankMedianPosition = function(rankValue,
model,
nextRankValue)
Performs median minimisation over one rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
mxEditor.prototype.readGraphModel = function (node)
Reads the specified XML node into the existing graph model and resets the command history and modified state.
mxSession.prototype.receive = function(node)
Processes the given node by applying the changes to the model.
Specifies the event name for receive.
Fires after an XML node was received in receive.
mxSession.prototype.received
Total number of received bytes.
mxArrow.prototype.reconfigure = function()
Extends mxActor.reconfigure to ignore fill if enableFill is false.
mxCylinder.prototype.reconfigure = function()
Overrides the method to make sure the stroke is applied to the foreground.
mxLabel.prototype.reconfigure = function()
Reconfigures this shape.
mxShape.prototype.reconfigure = function()
Reconfigures this shape.
mxSwimlane.prototype.reconfigure = function(node)
Overrides to avoid filled content area in HTML and updates the shadow in SVG.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
rect: function(x,
y,
w,
h)
Sets the current path to a rectangle.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
rectangleIntersectsSegment: function(bounds,
p1,
p2)
Returns true if the given rectangle intersects the given segment.
RectanglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rectangular perimeter for the given bounds.
redirectMouseEvents: function(node,
graph,
state,
down,
move,
up,
dblClick)
Redirects the mouse events from the given DOM node to the graph dispatch loop using the event and given state as event arguments.
mxEditor.prototype.redo = function ()
Redo the last change in graph.
mxUndoableEdit.prototype.redo = function()
Redoes all changes in this edit.
mxUndoManager.prototype.redo = function()
Redoes the last change.
Specifies the event name for redo.
Fires afer a significant edit was redone in redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
mxCellRenderer.prototype.redraw = function(state,
force,
rendering)
Updates the bounds or points and scale of the shapes for the given cell state.
mxEdgeHandler.prototype.redraw = function()
Redraws the preview, and the bends- and label control points.
mxImageShape.prototype.redraw = function()
Overrides mxShape.redraw to preserve the aspect ratio of images.
mxLabel.prototype.redraw = function()
Overrides redraw to define a unified implementation for redrawing all supported dialects.
mxShape.prototype.redraw = function()
Invokes redrawSvg, redrawVml or redrawHtml depending on the dialect of the shape.
mxStencilShape.prototype.redraw = function()
Creates and returns the SVG node(s) to represent this shape.
mxVertexHandler.prototype.redraw = function()
Redraws the handles and the preview.
mxGraphView.prototype.redrawBackgroundImage = function(backgroundImage,
bg)
Updates the bounds and redraws the background image.
mxCellRenderer.prototype.redrawCellOverlays = function(state)
Redraws the overlays for the given cell state.
mxCellRenderer.prototype.redrawControl = function(state)
Redraws the control for the given cell state.
mxText.prototype.redrawForeignObject = function()
Redraws the foreign object for this text.
mxRhombus.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawHtml = function()
Redraws this HTML shape by invoking updateHtmlShape on this.node.
mxSwimlane.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtml = function()
Updates the HTML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawHtmlTable = function()
Redraws the HTML table.
mxConnectionHandler.prototype.redrawIcons = function(icons,
state)
Redraws the given array of mxImageShapes.
mxEdgeSegmentHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates the position of the custom bends.
mxEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxElbowEdgeHandler.prototype.redrawInnerBends = function(p0,
pe)
Updates and redraws the inner bends.
mxCellRenderer.prototype.redrawLabel = function(state)
Redraws the label for the given cell state.
mxConnector.prototype.redrawMarker = function(node,
type,
p0,
pe,
color,
size)
Updates the given SVG or VML marker.
Invokes from sizeDidChange to redraw the page breaks.
mxActor.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxArrow.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCloud.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxCylinder.prototype.redrawPath = function(path,
x,
y,
w,
h,
isForeground)
Draws the path for this shape.
mxHexagon.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxShape.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxTriangle.prototype.redrawPath = function(path,
x,
y,
w,
h)
Draws the path for this shape.
mxStencilShape.prototype.redrawShape = function()
Updates the SVG or VML shape.
mxActor.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxArrow.prototype.redrawSvg = function()
Extends mxActor.redrawSvg to update the event handling shape if one exists.
mxConnector.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxCylinder.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxEllipse.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxImageShape.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxLine.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxPolyline.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxRhombus.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawSvg = function()
Redraws this SVG shape by invoking updateSvgShape on this.node, this.innerNode and this.shadowNode.
mxSwimlane.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvg = function()
Updates the SVG node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawSvgTextNodes = function(x,
y,
dy)
Hook to update the position of the SVG text nodes.
mxText.prototype.redrawTextbox = function()
Redraws the textbox for this text.
mxActor.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxCylinder.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxDoubleEllipse.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
Redraws this VML shape by invoking updateVmlShape on this.node.
mxPolyline.prototype.redrawVml = function()
Overrides the method to update the bounds if they have not been assigned.
mxRhombus.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxShape.prototype.redrawVml = function()
Redraws this VML shape by invoking updateVmlShape on this.node.
mxSwimlane.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxText.prototype.redrawVml = function()
Updates the VML node(s) to reflect the latest bounds and scale.
mxFastOrganicLayout.prototype.reduceTemperature = function()
Reduces the temperature of the layout from an initial setting in a linear fashion to zero.
mxCodec.prototype.reference = function(obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
mxEdgeSegmentHandler.prototype.refresh = function()
Refreshes the bends of this handler.
mxGraph.prototype.refresh = function(cell)
Clears all cell states or the states for the hierarchy starting at the given cell and validates the graph.
mxGraphView.prototype.refresh = function()
Clears the view if currentRoot is not null and revalidates.
mxOutline.prototype.refresh = function()
Invokes update and revalidate the outline.
mxSelectionCellsHandler.prototype.refresh = function()
Reloads or updates all handlers.
Specifies the event name for refresh.
Fires after refresh was executed.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxEditor.prototype.refreshTasks = function (div)
Updates the contents of the tasks window using createTasks.
register: function(codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
mxCellRenderer.prototype.registerShape = function(key,
shape)
Registers the given constructor under the specified key in this instance of the renderer.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
relativeCcw: function(x1,
y1,
x2,
y2,
px,
py)
Returns 1 if the given point on the right side of the segment, 0 if its on the segment, and -1 if the point is on the left side of the segment.
release: function(element)
Removes the known listeners from the given DOM node and its descendants.
mxText.prototype.releaseSvgClip = function()
Releases the given SVG clip removing it from the DOM if required.
mxCell.prototype.remove = function(index)
Removes the child at the specified index from the child array and returns the child that was removed.
mxDictionary.prototype.remove = function(key)
Removes the value for the given key and returns the value that has been removed.
mxGraphModel.prototype.remove = function(cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
remove: function(obj,
array)
Removes all occurrences of the given object in the given array or object.
Specifies the event name for removeCells.
Fires between begin- and endUpdate in removeCells.
Specifies the event name for removeCellsFromParent.
Fires between begin- and endUpdate in removeCellsFromParent.
Specifies the event name for removeOverlay.
Fires after an overlay is removed in removeCellOverlay and removeCellOverlays.
removeAllListeners: function(element)
Removes all listeners from the given element.
removeAllStylenames: function(style)
Removes all stylenames from the given style and returns the updated style.
mxGraphSelectionModel.prototype.removeCell = function(cell)
Removes the specified mxCell from the selection and fires a select event for the remaining cells.
mxGraph.prototype.removeCellOverlay = function(cell,
overlay)
Removes and returns the given mxCellOverlay from the given cell.
mxGraph.prototype.removeCellOverlays = function(cell)
Removes all mxCellOverlays from the given cell.
removeCells: function(graph,
cells)
Hook to remove the given cells from the given graph after a cut operation.
mxGraph.prototype.removeCells = function(cells,
includeEdges)
Removes the given cells from the graph including all connected edges if includeEdges is true.
mxGraphSelectionModel.prototype.removeCells = function(cells)
mxGraph.prototype.removeCellsFromParent = function(cells)
Removes the specified cells from their parents and adds them to the default parent.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
removeCursors: function(element)
Removes the cursors from the style of the given DOM node and its descendants.
mxCell.prototype.removeEdge = function(edge,
isOutgoing)
Removes the specified edge from the edge array and returns the edge.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxCell.prototype.removeFromParent = function()
Removes the cell from its parent.
mxCell.prototype.removeFromTerminal = function(isSource)
Removes the edge from its source or target terminal.
mxGraph.prototype.removeImageBundle = function(bundle)
Removes the specified mxImageBundle.
removeListener: function()
Removes the specified listener from the given element.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
mxEdgeHandler.prototype.removePoint = function(state,
index)
Removes the control point at the given index from the given state.
mxGraph.prototype.removeSelectionCell = function(cell)
Removes the given cell from the selection.
mxGraph.prototype.removeSelectionCells = function(cells)
Removes the given cells from the selection.
mxGraphView.prototype.removeState = function(cell)
Removes and returns the mxCellState for the given cell.
mxGraph.prototype.removeStateForCell = function(cell)
Removes all cached information for the given cell and its descendants.
removeStylename: function(style,
stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
removeWhitespace: function(node,
before)
Removes the sibling text nodes for the given node that only consists of tabs, newlines and spaces.
mxStencil.prototype.renderDom = function(shape,
bounds,
parentNode,
state)
Updates the SVG or VML shape.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxPrintPreview.prototype.renderPage = function(w,
h,
dx,
dy,
scale,
pageNumber)
Creates a DIV that prints a single page of the given graph using the given scale and returns the DIV that represents the page.
mxRubberband.prototype.repaint = function()
Computes the bounding box and updates the style of the div.
repaintGraph: function(graph,
pt)
Normally not required, this contains the code to workaround a repaint issue and force a repaint of the graph container in AppleWebKit.
mxShape.prototype.reparseVml = function()
Forces a parsing of the outerHTML of this node and restores all references specified in vmlNodes.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxCoordinateAssignment.prototype.repositionValid = function(model,
cell,
rank,
position)
Determines whether or not a node may be moved to the specified x position on the specified rank
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxAutoSaveManager.prototype.reset = function()
Resets all counters.
mxCellMarker.prototype.reset = function()
Resets the state of the cell marker.
mxConnectionHandler.prototype.reset = function()
Resets the state of this handler.
mxConstraintHandler.prototype.reset = function()
Resets the state of this handler.
mxEdgeHandler.prototype.reset = function()
Resets the state of this handler.
mxGraphHandler.prototype.reset = function()
Resets the state of this handler.
mxRubberband.prototype.reset = function()
Resets the state of the rubberband selection.
mxSelectionCellsHandler.prototype.reset = function()
Resets all handlers.
mxTooltipHandler.prototype.reset = function(me,
restart)
Resets and/or restarts the timer to trigger the display of the tooltip.
mxVertexHandler.prototype.reset = function()
Resets the state of this handler.
mxGraph.prototype.resetEdge = function(edge)
Resets the control points of the given edge.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdges = function(cells)
Resets the control points of the edges that are connected to the given cells if not both ends of the edge are in the given cells array.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxEditor.prototype.resetFirstTime = function ()
Resets the cookie that is used to remember if the editor has already been used.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxEditor.prototype.resetHistory = function ()
Resets the command history, modified state and counters.
mxToolbar.prototype.resetMode = function(forced)
Selects the default mode and resets the state of the previously selected mode.
mxTooltipHandler.prototype.resetTimer = function()
Resets the timer.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
mxDivResizer.prototype.resize = function()
Updates the style of the DIV after the window has been resized.
Specifies the event name for resize.
Specifies the event name for resizeCells.
Fires between begin- and endUpdate in resizeCells.
Specifies the event name for resizeEnd.
Specifies the event name for resizeStart.
mxGraph.prototype.resizeCell = function(cell,
bounds)
Sets the bounds of the given cell using resizeCells.
mxVertexHandler.prototype.resizeCell = function(cell,
dx,
dy,
index,
gridEnabled)
Uses the given vector to change the bounds of the given cell in the graph using mxGraph.resizeCell.
mxGraph.prototype.resizeCells = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.RESIZE_CELLS event while the transaction is in progress.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
Boolean specifying if the height should be updated.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxSwimlaneManager.prototype.resizeSwimlane = function(swimlane,
w,
h)
Called from cellsResized for all swimlanes that are not ignored to update the size of the siblings and the size of the parent swimlanes, recursively, if bubbling is true.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Boolean specifying if the width should be updated.
resolve: function(root,
path)
Returns the cell for the specified cell path using the given root as the root of the path.
mxCellRenderer.prototype.resolveColor = function(state,
field,
key)
Resolves special keywords ‘inherit’, ‘indicated’ and ‘swimlane’ and sets the respective color on the shape.
Associative array that maps from keys to values.
restore: function()
Restores the state of the graphics object.
restore: function()
Restores the state of the graphics object.
mxGraphModel.prototype.restoreClone = function(clone,
cell,
mapping)
Inner helper method for restoring the connections in a network of cloned cells.
mxSession.prototype.resume = function(type,
attr,
value)
Resumes the session if it has been suspended.
Specifies the event name for suspend.
Fires after the session was resumed in resume.
mxGraphView.prototype.revalidate = function()
Revalidates the complete view with all cell states.
mxCellStatePreview.prototype.revalidateState = function(parentState,
state,
dx,
dy,
visitor)
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
reversePortConstraints: function(constraint)
Reverse the port constraint bitmask.
RhombusPerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a rhombus (aka diamond) perimeter.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
Fires when the current root has changed, or when the title of the current root has changed.
Specifies the event name for root.
Fires if the root in the model has changed.
mxGraphModel.prototype.rootChanged = function(root)
Inner callback to change the root of the model and update the internal datastructures, such as cells and nextId.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxGraphLayouts that this layout contains.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
rotate: function(theta,
flipH,
flipV,
cx,
cy)
Rotates and/or flips the current graphics object.
Index for the rotation handle in an mxMouseEvent.
mxShape.prototype.roundedCrispSvg
Specifies if crisp rendering should be enabled for rounded shapes.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
roundrect: function(x,
y,
w,
h,
dx,
dy)
Sets the current path to a rounded rectangle.
mxParallelEdgeLayout.prototype.route = function(edge,
x,
y)
Routes the given edge via the given point.
rtrim: function(str,
chars)
Strips all whitespaces from the end of the string.
mxHierarchicalLayout.prototype.run = function(parent)
The API method used to exercise the layout upon the graph description and produce a separate description of the vertex position and edge routing changes made.
diff --git a/docs/js-api/index/General16.html b/docs/js-api/index/General16.html index ae322fd94..052d90e36 100644 --- a/docs/js-api/index/General16.html +++ b/docs/js-api/index/General16.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 SAVE
 saveAs, mxUtils
 scale
 SCALE
 SCALE_AND_TRANSLATE
 scaleAndTranslate, mxGraphView
 scaleGrid, mxGraphHandler
 scanRanksFromSinks, mxGraphHierarchyModel
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollOnMove, mxGraphHandler
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 segments, mxCellState
 select, mxConnectionHandler
 SELECT
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectEnabled, mxGraphHandler
 Selection, mxGraph
 Selection state, mxGraph
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectOnPopup, mxPanningHandler
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send
 sent, mxSession
 SESSION
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 shapes
 sharedDiv, mxRubberband
 shiftCell, mxSpaceManager
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 SHOW
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 showViewport, mxOutline
 SideToSide, mxEdgeStyle
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 simulate, mxXmlRequest
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE
 sizeDidChange, mxGraph
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snap
 snapToTerminals, mxEdgeHandler
 sortCells, mxUtils
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK, mxGraphHierarchyModel
 spacing
 SPLIT_EDGE
 splitEdge, mxGraph
 splitEnabled, mxGraph
 src, mxImage
 start
 START_EDITING
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 startOffset, mxShape
 state
 states, mxGuide
 status, mxEditor
 stencil, mxStencilShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 strokedBackground, mxCylinder
 strokewidth
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STENCIL_FLIPH, mxConstants
 STYLE_STENCIL_FLIPV, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 submit, mxUtils
 suspend, mxSession
 SUSPEND
 suspended, mxOutline
 SVG_STROKE_TOLERANCE, mxShape
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 save
 SAVE
 saveAs, mxUtils
 scale
 SCALE
 SCALE_AND_TRANSLATE
 scaleAndTranslate, mxGraphView
 scaleGrid, mxGraphHandler
 scanRanksFromSinks, mxGraphHierarchyModel
 scheduleUpdateAspect, mxImageShape
 scrollCellToVisible, mxGraph
 scrollOnMove, mxGraphHandler
 scrollPointToVisible, mxGraph
 scrollRectToVisible, mxGraph
 SegmentConnector, mxEdgeStyle
 segments, mxCellState
 select, mxConnectionHandler
 SELECT
 selectAll, mxGraph
 selectCell, mxGraph
 selectCellForEvent, mxGraph
 selectCells
 selectCellsForEvent, mxGraph
 selectChildCell, mxGraph
 selectDelayed, mxGraphHandler
 selectEnabled, mxGraphHandler
 Selection, mxGraph
 Selection state, mxGraph
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectMode, mxToolbar
 selectNextCell, mxGraph
 selectOnPopup, mxPanningHandler
 selectParentCell, mxGraph
 selectPreviousCell, mxGraph
 selectRegion, mxGraph
 selectVertices, mxGraph
 send
 sent, mxSession
 SESSION
 setAbsoluteTerminalPoint, mxCellState
 setAddEnabled, mxSwimlaneManager
 setAllowDanglingEdges, mxGraph
 setAllowEval, mxGraphView
 setAllowLoops, mxGraph
 setAlpha
 setAttribute
 setAutoAntiAlias, mxSvgCanvas2D
 setAutoSizeCells, mxGraph
 setBackgroundImage, mxGraph
 setBaseUrl, mxUrlConverter
 setBinary, mxXmlRequest
 setBorder, mxGraph
 setBubbling, mxLayoutManager
 setCell, mxGraphSelectionModel
 setCellLocations, mxCoordinateAssignment
 setCells, mxGraphSelectionModel
 setCellsBendable, mxGraph
 setCellsCloneable, mxGraph
 setCellsDeletable, mxGraph
 setCellsDisconnectable, mxGraph
 setCellsEditable, mxGraph
 setCellsMovable, mxGraph
 setCellsResizable, mxGraph
 setCellsSelectable, mxGraph
 setCellStyle, mxGraph
 setCellStyleFlags
 setCellStyles
 setCellWarning, mxGraph
 setCloneEnabled, mxGraphHandler
 setCloneInvalidEdges, mxGraph
 setClosable, mxWindow
 setCollapsed
 setCompressed, mxXmlCanvas2D
 setConnectable
 setConnectableEdges, mxGraph
 setConnectionConstraint, mxGraph
 setConstrainChildren, mxGraph
 setCreateIds, mxGraphModel
 setCreateTarget, mxConnectionHandler
 setCurrentRoot, mxGraphView
 setCursor
 setDashed
 setDashPattern
 setDefaultParent, mxGraph
 setDisconnectOnMove, mxGraph
 setDropEnabled, mxGraph
 setEdge, mxCell
 setEdgePoints, mxGraphLayout
 setEdgePosition, mxCoordinateAssignment
 setEdgeStyleEnabled, mxGraphLayout
 setEnabled
 setEnterStopsCellEditing, mxGraph
 setEscapeEnabled, mxGraph
 setEventsEnabled, mxEventSource
 setEventSource, mxEventSource
 setExtendParents, mxGraph
 setExtendParentsOnAdd, mxGraph
 setFillColor
 setFoEnabled, mxSvgCanvas2D
 setFontColor
 setFontFamily
 setFontSize
 setFontStyle
 setGeneralPurposeVariable
 setGeometry
 setGlassGradient
 setGradient
 setGraph
 setGraphBounds, mxGraphView
 setGraphContainer, mxEditor
 setGridEnabled
 setGridSize, mxGraph
 setGuidesEnabled, mxDragSource
 setHideOnHover, mxTooltipHandler
 setHighlightColor
 setHorizontal, mxSwimlaneManager
 setHotspot, mxCellMarker
 setHotspotEnabled, mxCellMarker
 setHtmlLabels, mxGraph
 setId, mxCell
 setImage, mxWindow
 setInvokesStopCellEditing, mxGraph
 setLineCap
 setLineJoin
 setLocation, mxWindow
 setLocked, mxGraph
 setMaximizable, mxWindow
 setMinimizable, mxWindow
 setMiterLimit
 setMode, mxEditor
 setModified
 setMoveEnabled, mxGraphHandler
 setMultigraph, mxGraph
 setOpacity, mxUtils
 setOrthogonalEdge, mxGraphLayout
 setPanning, mxGraph
 setPanningEnabled, mxPanningHandler
 setParent, mxCell
 setPortsEnabled, mxGraph
 setPreviewColor, mxEdgeHandler
 setRect, mxRectangle
 setRemoveCellsFromParent, mxGraphHandler
 setRendering, mxGraphView
 setRequestHeaders, mxXmlRequest
 setResizable, mxWindow
 setResizeContainer, mxGraph
 setResizeEnabled, mxSwimlaneManager
 setRoot, mxGraphModel
 setScale, mxGraphView
 setScrollable, mxWindow
 setSelectEnabled, mxGraphHandler
 setSelectionCell, mxGraph
 setSelectionCells, mxGraph
 setSelectionModel, mxGraph
 setShiftDownwards, mxSpaceManager
 setShiftRightwards, mxSpaceManager
 setSingleSelection, mxGraphSelectionModel
 setSize, mxWindow
 setSplitEnabled, mxGraph
 setStates
 setStatus, mxEditor
 setStatusContainer, mxEditor
 setStrokeColor
 setStrokeWidth
 setStyle
 setStyleFlag, mxUtils
 setStylesheet, mxGraph
 setSwimlaneNesting, mxGraph
 setSwimlaneSelectionEnabled, mxGraph
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTextEnabled
 setTitle, mxWindow
 setTitleContainer, mxEditor
 setTolerance, mxGraph
 setToolbarContainer, mxEditor
 setTooltips, mxGraph
 setTranslate
 setValue
 setVertex, mxCell
 setVertexLabelsMovable, mxGraph
 setVertexLocation
 setVisible
 setVisibleTerminalState, mxCellState
 setX, mxGraphAbstractHierarchyCell
 setY, mxGraphAbstractHierarchyCell
 setZoomEnabled, mxOutline
 shadow
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 shapes
 sharedDiv, mxRubberband
 shiftCell, mxSpaceManager
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 shouldRemoveCellsFromParent, mxGraphHandler
 show
 SHOW
 showHelp, mxEditor
 showMenu, mxPopupMenu
 showOutline, mxEditor
 showProperties, mxEditor
 showSubmenu, mxPopupMenu
 showTasks, mxEditor
 showViewport, mxOutline
 SideToSide, mxEdgeStyle
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 simulate, mxXmlRequest
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE
 sizeDidChange, mxGraph
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snap
 snapToTerminals, mxEdgeHandler
 sortCells, mxUtils
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK, mxGraphHierarchyModel
 spacing
 SPLIT_EDGE
 splitEdge, mxGraph
 splitEnabled, mxGraph
 src, mxImage
 start
 START_EDITING
 startAnimation, mxAnimation
 startDrag, mxDragSource
 startEditing
 startEditingAtCell, mxGraph
 startOffset, mxShape
 state
 states, mxGuide
 status, mxEditor
 stencil, mxStencilShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 stop, mxSession
 stopAnimation, mxAnimation
 stopDrag, mxDragSource
 stopEditing
 stopRecursion, mxMorphing
 stroke
 strokedBackground, mxCylinder
 strokewidth
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STENCIL_FLIPH, mxConstants
 STYLE_STENCIL_FLIPV, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styleForCellChanged, mxGraphModel
 styles, mxStylesheet
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 submit, mxUtils
 suspend, mxSession
 SUSPEND
 suspended, mxOutline
 SVG_STROKE_TOLERANCE, mxShape
 swap, mxGeometry
 swapBounds, mxGraph
 swapStyles, mxEditor
 swimlaneAdded, mxSwimlaneManager
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
-
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
Fires after the current file was saved in save.
Specifies the event name for open.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxGraphView.prototype.scale
Specifies the scale.
mxPath.prototype.scale
Number that specifies the translation of the path.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
Specifies the event name for scale.
Fires after the scale was changed in setScale.
Specifies the event name for scaleAndTranslate.
Fires after the scale and translate have been changed in scaleAndTranslate.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraphHierarchyModel.prototype.scanRanksFromSinks
Whether the rank assignment is done from the sinks or sources.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
Fires when an item was selected in the toolbar.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxSession.prototype.sent
Total number of sent bytes.
Fires when anything in the session has changed.
Specifies the event name for session.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxCellRenderer.prototype.shapes
Array that maps from shape names to shape constructors.
mxImageExport.prototype.shapes
Holds implementations for the built-in shapes.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
Specifies the event name for show.
Fires after the menu has been shown in popup.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
Fires after sizeDidChange was executed.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
Reference to the source mxGraph.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
Fires between begin- and endUpdate in splitEdge.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
Specifies the event name for startEditing.
Fires before the in-place editor starts in startEditingAtCell.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxShape.prototype.startOffset
Specifies the offset in pixels from the first point in points and the actual start of the shape.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxStencilShape.prototype.state
Holds the mxCellState associated with this shape.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxStencilShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxCylinder.prototype.strokedBackground
Specifies if the background should be stroked.
mxShape.prototype.strokewidth
Holds the current strokewidth.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Holds the style of the cell state that corresponds to this shape.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the endSize style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the horizontal image flip.
Defines the key for the vertical image flip.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Defines the key for the resizable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the horizontal stencil flip.
Defines the key for the vertical stencil flip.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
Specifies the event name for suspend.
Fires after suspend was called an the session was not already in suspended state.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxShape.prototype.SVG_STROKE_TOLERANCE
Event-tolerance for SVG strokes (in px).
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
+
mxAutoSaveManager.prototype.save = function()
Empty hook that is called if the graph should be saved.
mxEditor.prototype.save = function (url,
linefeed)
Posts the string returned by writeGraphModel to the given URL or the URL returned by getUrlPost.
save: function()
Saves the state of the graphics object.
save: function(filename,
content)
Saves the specified content in the given file on the local file system.
save: function()
Saves the state of the graphics object.
Fires after the current file was saved in save.
Specifies the event name for open.
saveAs: function(content)
Saves the specified content by displaying a dialog to save the content as a file on the local filesystem.
mxGraphView.prototype.scale
Specifies the scale.
mxPath.prototype.scale
Number that specifies the translation of the path.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
scale: function(value)
Scales the current graphics object.
scale: function(value)
Scales the current graphics object.
Specifies the event name for scale.
Fires after the scale was changed in setScale.
Specifies the event name for scaleAndTranslate.
Fires after the scale and translate have been changed in scaleAndTranslate.
mxGraphView.prototype.scaleAndTranslate = function(scale,
dx,
dy)
Sets the scale and translation and fires a scale and translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraphHierarchyModel.prototype.scanRanksFromSinks
Whether the rank assignment is done from the sinks or sources.
mxImageShape.prototype.scheduleUpdateAspect = function()
Schedules an asynchronous updateAspect using the current image.
mxGraph.prototype.scrollCellToVisible = function(cell,
center)
Pans the graph so that it shows the given cell.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxGraph.prototype.scrollPointToVisible = function(x,
y,
extend,
border)
Scrolls the graph to the given point, extending the graph container if specified.
mxGraph.prototype.scrollRectToVisible = function(rect)
Pans the graph so that it shows the given rectangle.
SegmentConnector: function(state,
source,
target,
hints,
result)
Implements an orthogonal edge style.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
Fires when an item was selected in the toolbar.
mxGraph.prototype.selectAll = function(parent)
Selects all children of the given parent cell or the children of the default parent if no parent is specified.
mxGraph.prototype.selectCell = function(isNext,
isParent,
isChild)
Selects the next, parent, first child or previous cell, if all arguments are false.
mxGraph.prototype.selectCellForEvent = function(cell,
evt)
Selects the given cell by either adding it to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxConnectionHandler.prototype.selectCells = function(edge,
target)
Selects the given edge after adding a new connection.
mxGraph.prototype.selectCells = function(vertices,
edges,
parent)
Selects all vertices and/or edges depending on the given boolean arguments recursively, starting at the given parent or the default parent if no parent is specified.
mxGraph.prototype.selectCellsForEvent = function(cells,
evt)
Selects the given cells by either adding them to the selection or replacing the selection depending on whether the given mouse event is a toggle event.
mxGraph.prototype.selectChildCell = function()
Selects the first child cell.
mxGraphHandler.prototype.selectDelayed = function(me)
Implements the delayed selection for the given mouse event.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxToolbar.prototype.selectMode = function(domNode,
funct)
Resets the state of the previously selected mode and displays the given DOM node as selected.
mxGraph.prototype.selectNextCell = function()
Selects the next cell.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxGraph.prototype.selectParentCell = function()
Selects the parent cell.
mxGraph.prototype.selectPreviousCell = function()
Selects the previous cell.
mxGraph.prototype.selectRegion = function(rect,
evt)
Selects and returns the cells inside the given rectangle for the specified event.
mxGraph.prototype.selectVertices = function(parent)
Select all vertices inside the given parent or the default parent.
mxXmlRequest.prototype.send = function(onload,
onerror)
Send the request to the target URL using the specified functions to process the response asychronously.
mxSession.prototype.sent
Total number of sent bytes.
Fires when anything in the session has changed.
Specifies the event name for session.
mxCellState.prototype.setAbsoluteTerminalPoint = function (point,
isSource)
Sets the first or last point in absolutePoints depending on isSource.
mxSwimlaneManager.prototype.setAddEnabled = function(value)
Sets addEnabled.
mxGraph.prototype.setAllowDanglingEdges = function(value)
Specifies if dangling edges are allowed, that is, if edges are allowed that do not have a source and/or target terminal defined.
mxGraphView.prototype.setAllowEval = function(value)
Sets allowEval.
mxGraph.prototype.setAllowLoops = function(value)
Specifies if loops are allowed.
setAlpha: function(alpha)
Sets the current alpha.
setAlpha: function(alpha)
Sets the current alpha.
mxCell.prototype.setAttribute = function(name,
value)
Sets the specified attribute on the user object if it is an XML node.
mxCodec.prototype.setAttribute = function(node,
attribute,
value)
Sets the attribute on the specified node to value.
setAutoAntiAlias: function(value)
Sets autoAntiAlias.
mxGraph.prototype.setAutoSizeCells = function(value)
Specifies if cell sizes should be automatically updated after a label change.
mxGraph.prototype.setBackgroundImage = function(image)
Sets the new backgroundImage.
setBaseUrl: function(value)
Sets baseUrl.
mxXmlRequest.prototype.setBinary = function(value)
Sets binary.
mxGraph.prototype.setBorder = function(value)
Sets the value of border.
mxLayoutManager.prototype.setBubbling = function(value)
Sets bubbling.
mxGraphSelectionModel.prototype.setCell = function(cell)
Selects the specified mxCell using setCells.
mxCoordinateAssignment.prototype.setCellLocations = function(graph,
model)
Sets the cell locations in the facade to those stored after this layout processing step has completed.
mxGraphSelectionModel.prototype.setCells = function(cells)
Selects the given array of mxCells and fires a change event.
mxGraph.prototype.setCellsBendable = function(value)
Specifies if the graph should allow bending of edges.
mxGraph.prototype.setCellsCloneable = function(value)
Specifies if the graph should allow cloning of cells by holding down the control key while cells are being moved.
mxGraph.prototype.setCellsDeletable = function(value)
Sets cellsDeletable.
mxGraph.prototype.setCellsDisconnectable = function(value)
Sets cellsDisconnectable.
mxGraph.prototype.setCellsEditable = function(value)
Specifies if the graph should allow in-place editing for cell labels.
mxGraph.prototype.setCellsMovable = function(value)
Specifies if the graph should allow moving of cells.
mxGraph.prototype.setCellsResizable = function(value)
Specifies if the graph should allow resizing of cells.
mxGraph.prototype.setCellsSelectable = function(value)
Sets cellsSelectable.
mxGraph.prototype.setCellStyle = function(style,
cells)
Sets the style of the specified cells.
mxGraph.prototype.setCellStyleFlags = function(key,
flag,
value,
cells)
Sets or toggles the given bit for the given key in the styles of the specified cells.
setCellStyleFlags: function(model,
cells,
key,
flag,
value)
Sets or toggles the flag bit for the given key in the cell’s styles.
mxGraph.prototype.setCellStyles = function(key,
value,
cells)
Sets the key to value in the styles of the given cells.
setCellStyles: function(model,
cells,
key,
value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraphHandler.prototype.setCloneEnabled = function(value)
Sets cloneEnabled.
mxGraph.prototype.setCloneInvalidEdges = function(value)
Specifies if edges should be inserted when cloned but not valid wrt.
mxWindow.prototype.setClosable = function(closable)
Sets the image associated with the window.
mxCell.prototype.setCollapsed = function(collapsed)
Sets the collapsed state.
mxGraphModel.prototype.setCollapsed = function(cell,
collapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
setCompressed: function(value)
Sets compressed.
mxCell.prototype.setConnectable = function(connectable)
Sets the connectable state.
mxGraph.prototype.setConnectable = function(connectable)
Specifies if the graph should allow new connections.
mxGraph.prototype.setConnectableEdges = function(value)
Specifies if edges should be connectable.
mxGraph.prototype.setConnectionConstraint = function(edge,
terminal,
source,
constraint)
Sets the mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.setConstrainChildren = function(value)
Sets constrainChildren.
mxGraphModel.prototype.setCreateIds = function(value)
Sets createIds.
mxConnectionHandler.prototype.setCreateTarget = function(value)
Sets createTarget.
mxGraphView.prototype.setCurrentRoot = function(root)
Sets and returns the current root and fires an undo event before calling mxGraph.sizeDidChange.
mxCellState.prototype.setCursor = function (cursor)
Sets the given cursor on the shape and text shape.
mxShape.prototype.setCursor = function(cursor)
Sets the cursor on the given shape.
setDashed: function(value)
Sets the dashed state to true or false.
setDashed: function(value)
Sets the dashed state to true or false.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
setDashPattern: function(value)
Sets the dashed pattern to the given space separated list of numbers.
mxGraph.prototype.setDefaultParent = function(cell)
Sets the defaultParent to the given cell.
mxGraph.prototype.setDisconnectOnMove = function(value)
Specifies if edges should be disconnected when moved.
mxGraph.prototype.setDropEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxCell.prototype.setEdge = function(edge)
Specifies if the cell is an edge.
mxGraphLayout.prototype.setEdgePoints = function(edge,
points)
Replaces the array of mxPoints in the geometry of the given edge with the given array of mxPoints.
mxCoordinateAssignment.prototype.setEdgePosition = function(cell)
Fixes the control points
mxGraphLayout.prototype.setEdgeStyleEnabled = function(edge,
value)
Disables or enables the edge style of the given edge.
mxAutoSaveManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxCellMarker.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConnectionHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxConstraintHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxDragSource.prototype.setEnabled = function(value)
Sets enabled.
mxGraph.prototype.setEnabled = function(value)
Specifies if the graph should allow any interactions.
mxGraphHandler.prototype.setEnabled = function(value)
Sets enabled.
mxKeyHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling by updating enabled.
mxLayoutManager.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxOutline.prototype.setEnabled = function(value)
Enables or disables event handling.
mxPopupMenu.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxRubberband.prototype.setEnabled = function(enabled)
Enables or disables event handling.
mxSelectionCellsHandler.prototype.setEnabled = function(value)
Sets enabled.
mxSpaceManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxSwimlaneManager.prototype.setEnabled = function(value)
Enables or disables event handling.
mxTooltipHandler.prototype.setEnabled = function(enabled)
Enables or disables event handling.
setEnabled: function(value)
Sets enabled.
mxGraph.prototype.setEnterStopsCellEditing = function(value)
Sets enterStopsCellEditing.
mxGraph.prototype.setEscapeEnabled = function(value)
Sets escapeEnabled.
mxEventSource.prototype.setEventsEnabled = function(value)
Sets eventsEnabled.
mxEventSource.prototype.setEventSource = function(value)
Sets eventSource.
mxGraph.prototype.setExtendParents = function(value)
Sets extendParents.
mxGraph.prototype.setExtendParentsOnAdd = function(value)
Sets extendParentsOnAdd.
setFillColor: function(value)
Sets the fillcolor.
setFillColor: function(value)
Sets the fillcolor.
setFoEnabled: function(value)
Sets foEnabled.
setFontColor: function(value)
Sets the fontcolor.
setFontColor: function(value)
Sets the fontcolor.
setFontFamily: function(value)
Sets the fontfamily.
setFontFamily: function(value)
Sets the fontfamily.
setFontSize: function(value)
Sets the fontsize.
setFontSize: function(value)
Sets the fontsize.
setFontStyle: function(value)
Sets the fontstyle.
setFontStyle: function(value)
Sets the fontstyle.
mxGraphAbstractHierarchyCell.prototype.setGeneralPurposeVariable = function(
   layer,
   value
)
Set the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxGraphHierarchyNode.prototype.setGeneralPurposeVariable = function(layer,
value)
Set the value of temp for the specified layer
mxCell.prototype.setGeometry = function(geometry)
Sets the mxGeometry to be used as the geometry.
mxGraphModel.prototype.setGeometry = function(cell,
geometry)
Sets the mxGeometry of the given mxCell.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGlassGradient: function(x,
y,
w,
h)
Sets the glass gradient.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
setGradient: function(color1,
color2,
x,
y,
w,
h,
direction)
Sets the gradient color.
mxAutoSaveManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxLayoutManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSpaceManager.prototype.setGraph = function(graph)
Sets the graph that the layouts operate on.
mxSwimlaneManager.prototype.setGraph = function(graph)
Sets the graph that the manager operates on.
mxGraphView.prototype.setGraphBounds = function(value)
Sets graphBounds.
mxEditor.prototype.setGraphContainer = function (container)
Sets the graph’s container using mxGraph.init.
mxDragSource.prototype.setGridEnabled = function(value)
Sets gridEnabled.
mxGraph.prototype.setGridEnabled = function(value)
Specifies if the grid should be enabled.
mxGraph.prototype.setGridSize = function(value)
Sets gridSize.
mxDragSource.prototype.setGuidesEnabled = function(value)
Sets guidesEnabled.
mxTooltipHandler.prototype.setHideOnHover = function(value)
Sets hideOnHover.
mxCellHighlight.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxGraphHandler.prototype.setHighlightColor = function(color)
Sets the color of the rectangle used to highlight drop targets.
mxSwimlaneManager.prototype.setHorizontal = function(value)
Sets horizontal.
mxCellMarker.prototype.setHotspot = function(hotspot)
Sets the hotspot.
mxCellMarker.prototype.setHotspotEnabled = function(enabled)
Specifies whether the hotspot should be used in intersects.
mxGraph.prototype.setHtmlLabels = function(value)
Sets htmlLabels.
mxCell.prototype.setId = function(id)
Sets the Id of the cell to the given string.
mxWindow.prototype.setImage = function(image)
Sets the image associated with the window.
mxGraph.prototype.setInvokesStopCellEditing = function(value)
Sets invokesStopCellEditing.
setLineCap: function(value)
Sets the linecap.
setLineCap: function(value)
Sets the linecap.
setLineJoin: function(value)
Sets the linejoin.
setLineJoin: function(value)
Sets the linejoin.
mxWindow.prototype.setLocation = function(x,
y)
Sets the upper, left corner of the window.
Sets if any cell may be moved, sized, bended, disconnected, edited or selected.
mxWindow.prototype.setMaximizable = function(maximizable)
Sets if the window is maximizable.
mxWindow.prototype.setMinimizable = function(minimizable)
Sets if the window is minimizable.
setMiterLimit: function(value)
Sets the miterlimit.
setMiterLimit: function(value)
Sets the miterlimit.
mxEditor.prototype.setMode = function(modename)
Puts the graph into the specified mode.
mxCellEditor.prototype.setModified = function(value)
Sets modified to the specified boolean value.
mxEditor.prototype.setModified = function (value)
Sets modified to the specified boolean value.
mxGraphHandler.prototype.setMoveEnabled = function(value)
Sets moveEnabled.
mxGraph.prototype.setMultigraph = function(value)
Specifies if the graph should allow multiple connections between the same pair of vertices.
setOpacity: function(node,
value)
Sets the opacity of the specified DOM node to the given value in %.
mxGraphLayout.prototype.setOrthogonalEdge = function(edge,
value)
Disables or enables orthogonal end segments of the given edge.
mxGraph.prototype.setPanning = function(enabled)
Specifies if panning should be enabled.
mxPanningHandler.prototype.setPanningEnabled = function(value)
Sets panningEnabled.
mxCell.prototype.setParent = function(parent)
Sets the parent cell.
mxGraph.prototype.setPortsEnabled = function(value)
Specifies if the ports should be enabled.
mxEdgeHandler.prototype.setPreviewColor = function(color)
Sets the color of the preview to the given value.
mxRectangle.prototype.setRect = function(x,
y,
w,
h)
Sets this rectangle to the specified values
mxGraphHandler.prototype.setRemoveCellsFromParent = function(value)
Sets removeCellsFromParent.
mxGraphView.prototype.setRendering = function(value)
Sets rendering.
mxXmlRequest.prototype.setRequestHeaders = function(request,
params)
Sets the headers for the given request and parameters.
mxWindow.prototype.setResizable = function(resizable)
Sets if the window should be resizable.
mxGraph.prototype.setResizeContainer = function(value)
Sets resizeContainer.
mxSwimlaneManager.prototype.setResizeEnabled = function(value)
Sets resizeEnabled.
mxGraphModel.prototype.setRoot = function(root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
mxGraphView.prototype.setScale = function(value)
Sets the scale and fires a scale event before calling revalidate followed by mxGraph.sizeDidChange.
mxWindow.prototype.setScrollable = function(scrollable)
Sets if the window contents should be scrollable.
mxGraphHandler.prototype.setSelectEnabled = function(value)
Sets selectEnabled.
mxGraph.prototype.setSelectionCell = function(cell)
Sets the selection cell.
mxGraph.prototype.setSelectionCells = function(cells)
Sets the selection cell.
mxGraph.prototype.setSelectionModel = function(selectionModel)
Sets the mxSelectionModel that contains the selection.
mxSpaceManager.prototype.setShiftDownwards = function(value)
Enables or disables event handling.
mxSpaceManager.prototype.setShiftRightwards = function(value)
Enables or disables event handling.
mxGraphSelectionModel.prototype.setSingleSelection = function(singleSelection)
Sets the singleSelection flag.
mxWindow.prototype.setSize = function(width,
height)
Sets the size of the window.
mxGraph.prototype.setSplitEnabled = function(value)
Specifies if the graph should allow dropping of cells onto or into other cells.
mxGraphView.prototype.setStates = function(value)
Sets states.
mxGuide.prototype.setStates = function(states)
Sets the mxCellStates that should be used for alignment.
mxEditor.prototype.setStatus = function (message)
Display the specified message in the status bar.
mxEditor.prototype.setStatusContainer = function (container)
Creates the status using the specified container.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeColor: function(value)
Sets the stroke color.
setStrokeWidth: function(value)
Sets the stroke width.
setStrokeWidth: function(value)
Sets the stroke width.
mxCell.prototype.setStyle = function(style)
Sets the string to be used as the style.
mxGraphModel.prototype.setStyle = function(cell,
style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
setStyle: function(style,
key,
value)
Adds or removes the given key, value pair to the style and returns the new style.
setStyleFlag: function(style,
key,
flag,
value)
Sets or removes the given key from the specified style and returns the new style.
mxGraph.prototype.setStylesheet = function(stylesheet)
Sets the mxStylesheet that defines the style.
mxGraph.prototype.setSwimlaneNesting = function(value)
Specifies if swimlanes can be nested by drag and drop.
mxGraph.prototype.setSwimlaneSelectionEnabled = function(value)
Specifies if swimlanes should be selected if the mouse is released over their content area.
mxCell.prototype.setTerminal = function(terminal,
isSource)
Sets the source or target terminal and returns the new terminal.
mxGraphModel.prototype.setTerminal = function(edge,
terminal,
isSource)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
mxGeometry.prototype.setTerminalPoint = function(point,
isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
mxGraphModel.prototype.setTerminals = function(edge,
source,
target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
setTextEnabled: function(value)
Sets textEnabled.
setTextEnabled: function(value)
Sets textEnabled.
mxWindow.prototype.setTitle = function(title)
Sets the window title to the given string.
mxEditor.prototype.setTitleContainer = function (container)
Creates a listener to update the inner HTML of the specified DOM node with the value of getTitle.
mxGraph.prototype.setTolerance = function(value)
Sets tolerance.
mxEditor.prototype.setToolbarContainer = function (container)
Initializes the toolbar for the given container.
mxGraph.prototype.setTooltips = function (enabled)
Specifies if tooltips should be enabled.
mxGraphView.prototype.setTranslate = function(dx,
dy)
Sets the translation and fires a translate event before calling revalidate followed by mxGraph.sizeDidChange.
mxPath.prototype.setTranslate = function(x,
y)
Set the global translation of this path, that is, the origin of the coordinate system.
mxCell.prototype.setValue = function(value)
Sets the user object of the cell.
mxGraphModel.prototype.setValue = function(cell,
value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
mxCell.prototype.setVertex = function(vertex)
Specifies if the cell is a vertex.
mxGraph.prototype.setVertexLabelsMovable = function(value)
Sets vertexLabelsMovable.
mxCoordinateAssignment.prototype.setVertexLocation = function(cell)
Fixes the position of the specified vertex.
mxGraphLayout.prototype.setVertexLocation = function(cell,
x,
y)
Sets the new position of the given cell taking into account the size of the bounding box if useBoundingBox is true.
mxCell.prototype.setVisible = function(visible)
Specifies if the cell is visible.
mxGraphModel.prototype.setVisible = function(cell,
visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
setVisible: function(visible)
Shows or hides the console.
mxWindow.prototype.setVisible = function(visible)
Shows or hides the window depending on the given flag.
mxCellState.prototype.setVisibleTerminalState = function (terminalState,
source)
Sets the visible source or target terminal state.
mxGraphAbstractHierarchyCell.prototype.setX = function(layer,
value)
Set the value of x for the specified layer
mxGraphAbstractHierarchyCell.prototype.setY = function(layer,
value)
Set the value of y for the specified layer
mxOutline.prototype.setZoomEnabled = function(value)
Enables or disables the zoom handling by showing or hiding the respective handle.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
shadow: function(value,
filled)
Paints the current path as a shadow of the given color.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxCellRenderer.prototype.shapes
Array that maps from shape names to shape constructors.
mxImageExport.prototype.shapes
Holds implementations for the built-in shapes.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftCell = function(cell,
dx,
dy,
Ox0,
y0,
right,
bottom,
fx,
fy,
extendParent)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
mxGraphHandler.prototype.shouldRemoveCellsFromParent = function(parent,
cells,
evt)
Returns true if the given cells should be removed from the parent for the specified mousereleased event.
mxCellStatePreview.prototype.show = function(visitor)
show: function()
Shows the console.
mxMorphing.prototype.show = function(move)
Shows the changes in the given mxCellStatePreview.
mxTooltipHandler.prototype.show = function(tip,
x,
y)
Shows the tooltip for the specified cell and optional index at the specified location (with a vertical offset of 10 pixels).
show: function(graph,
doc,
x0,
y0)
Copies the styles and the markup from the graph’s container into the given document and removes all cursor styles.
mxWindow.prototype.show = function()
Shows the window.
Specifies the event name for show.
Fires after the menu has been shown in popup.
mxEditor.prototype.showHelp = function (tasks)
Shows the help window.
mxPopupMenu.prototype.showMenu = function()
Shows the menu.
mxEditor.prototype.showOutline = function ()
Shows the outline window.
mxEditor.prototype.showProperties = function (cell)
Creates and shows the properties dialog for the given cell.
mxPopupMenu.prototype.showSubmenu = function(parent,
row)
Shows the submenu inside the given parent row.
mxEditor.prototype.showTasks = function ()
Shows the tasks window.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
SideToSide: function (state,
source,
target,
points,
result)
Implements a vertical elbow edge.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxXmlRequest.prototype.simulate = function(doc,
target)
Creates and posts a request to the given target URL using a dynamically created form inside the given document.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
Fires after sizeDidChange was executed.
mxGraph.prototype.sizeDidChange = function()
Called when the size of the graph has changed.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxGraph.prototype.snap = function(value)
Snaps the given numeric value to the grid if gridEnabled is true.
mxGraphHandler.prototype.snap = function(vector)
Snaps the given vector to the grid and returns the given mxPoint instance.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
sortCells: function(cells,
ascending)
Sorts the given cells according to the order in the cell hierarchy.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
Reference to the source mxGraph.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
Fires between begin- and endUpdate in splitEdge.
mxGraph.prototype.splitEdge = function(edge,
cells,
newEdge,
dx,
dy)
Splits the given edge by adding the newEdge between the previous source and the given cell and reconnecting the source of the given edge to the given cell.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
mxConnectionHandler.prototype.start = function(state,
x,
y,
edgeState)
Starts a new connection for the given state and coordinates.
mxEdgeHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
mxGraphHandler.prototype.start = function(cell,
x,
y)
Starts the handling of the mouse gesture.
mxRubberband.prototype.start = function(x,
y)
Sets the start point for the rubberband selection.
mxSession.prototype.start = function()
mxVertexHandler.prototype.start = function(x,
y,
index)
Starts the handling of the mouse gesture.
Specifies the event name for startEditing.
Fires before the in-place editor starts in startEditingAtCell.
mxAnimation.prototype.startAnimation = function()
Starts the animation by repeatedly invoking updateAnimation.
mxDragSource.prototype.startDrag = function(evt)
Creates the dragElement using createDragElement.
mxCellEditor.prototype.startEditing = function(cell,
trigger)
Starts the editor for the given cell.
mxGraph.prototype.startEditing = function(evt)
Calls startEditingAtCell using the given cell or the first selection cell.
mxGraph.prototype.startEditingAtCell = function(cell,
evt)
Fires a startEditing event and invokes mxCellEditor.startEditing on editor.
mxShape.prototype.startOffset
Specifies the offset in pixels from the first point in points and the actual start of the shape.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxStencilShape.prototype.state
Holds the mxCellState associated with this shape.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxStencilShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxSession.prototype.stop = function(reason)
Stops the session and fires a disconnect event.
mxAnimation.prototype.stopAnimation = function()
Stops the animation by deleting the timer and fires an mxEvent.DONE.
mxDragSource.prototype.stopDrag = function(evt)
Removes and destroys the dragElement.
mxCellEditor.prototype.stopEditing = function(cancel)
Stops the editor and applies the value if cancel is false.
mxGraph.prototype.stopEditing = function(cancel)
Stops the current editing.
mxMorphing.prototype.stopRecursion = function(state,
delta)
Returns true if the animation should not recursively find more deltas for children if the given parent state has been animated.
stroke: function()
Paints the outline of the current path.
stroke: function()
Paints the outline of the current path.
mxCylinder.prototype.strokedBackground
Specifies if the background should be stroked.
mxShape.prototype.strokewidth
Holds the current strokewidth.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Holds the style of the cell state that corresponds to this shape.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the endSize style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the horizontal image flip.
Defines the key for the vertical image flip.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Defines the key for the resizable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the horizontal stencil flip.
Defines the key for the vertical stencil flip.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
mxGraphModel.prototype.styleForCellChanged = function(cell,
style)
Inner callback to update the style of the given mxCell using mxCell.setStyle and return the previous style.
Maps from names to cell styles.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
submit: function(url,
params,
doc,
target)
Submits the given parameters to the specified URL using mxXmlRequest.simulate and returns the mxXmlRequest.
mxSession.prototype.suspend = function()
Suspends the polling.
Specifies the event name for suspend.
Fires after suspend was called an the session was not already in suspended state.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxShape.prototype.SVG_STROKE_TOLERANCE
Event-tolerance for SVG strokes (in px).
mxGeometry.prototype.swap = function()
Swaps the x, y, width and height with the values stored in alternateBounds and puts the previous values into alternateBounds as a rectangle.
mxGraph.prototype.swapBounds = function(cell,
willCollapse)
Swaps the alternate and the actual bounds in the geometry of the given cell invoking updateAlternateBounds before carrying out the swap.
mxEditor.prototype.swapStyles = function (first,
second)
Swaps the styles for the given names in the graph’s stylesheet and refreshes the graph.
mxSwimlaneManager.prototype.swimlaneAdded = function(swimlane)
Updates the size of the given swimlane to match that of any existing siblings swimlanes.
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
diff --git a/docs/js-api/index/General17.html b/docs/js-api/index/General17.html index 68f14cc45..24626275b 100644 --- a/docs/js-api/index/General17.html +++ b/docs/js-api/index/General17.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 tapAndHold, mxConnectionHandler
 tapAndHoldDelay, mxConnectionHandler
 tapAndHoldEnabled, mxConnectionHandler
 tapAndHoldInProgress, mxConnectionHandler
 tapAndHoldTolerance, mxConnectionHandler
 tapAndHoldValid, mxConnectionHandler
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 Templates, mxEditor
 terminalDistance, mxCellState
 terminalForCellChanged, mxGraphModel
 text
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 TRACE, mxLog
 transformControlPoint, mxGraphView
 translate
 TRANSLATE
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 traverseAncestors, mxHierarchicalLayout
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trigger, mxCellEditor
 trim
 type, mxMultiplicity
 typeError, mxMultiplicity
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 tapAndHold, mxConnectionHandler
 tapAndHoldDelay, mxConnectionHandler
 tapAndHoldEnabled, mxConnectionHandler
 tapAndHoldInProgress, mxConnectionHandler
 tapAndHoldTolerance, mxConnectionHandler
 tapAndHoldValid, mxConnectionHandler
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 Templates, mxEditor
 terminalDistance, mxCellState
 terminalForCellChanged, mxGraphModel
 text
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS
 toggleCells, mxGraph
 toggleCellStyle, mxGraph
 toggleCellStyleFlags, mxGraph
 toggleCellStyles, mxGraph
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 toString
 TRACE, mxLog
 transformControlPoint, mxGraphView
 translate
 TRANSLATE
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translateCell, mxGraph
 translateState, mxCellStatePreview
 transpose, mxMedianHybridCrossingReduction
 traverse
 traverseAncestors, mxHierarchicalLayout
 treeLayout, mxEditor
 TrianglePerimeter, mxPerimeter
 trigger, mxCellEditor
 trim
 type, mxMultiplicity
 typeError, mxMultiplicity
-
mxForm.prototype.table
Holds the DOM node that represents the table.
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxConnectionHandler.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxConnectionHandler.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxConnectionHandler.prototype.tapAndHoldTolerance
Specifies the tolerance for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxCellEditor.prototype.textarea
Holds the input textarea.
var textEnabled
Specifies if text output should be enabled.
var textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
Fires between begin- and endUpdate in toggleCells.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxPath.prototype.translate
mxPoint that specifies the translation of the complete path.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
Specifies the event name for translate.
Fires after the translate was changed in setTranslate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to navigate edges whose terminal vertices have different parents but are in the same ancestry chain
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
+
mxForm.prototype.table
Holds the DOM node that represents the table.
mxConnectionHandler.prototype.tapAndHold = function(me,
state)
Handles the mxMouseEvent by highlighting the mxCellState.
mxConnectionHandler.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxConnectionHandler.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxConnectionHandler.prototype.tapAndHoldTolerance
Specifies the tolerance for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxGraphModel.prototype.terminalForCellChanged = function(edge,
terminal,
isSource)
Inner helper function to update the terminal of the edge using mxCell.insertEdge and return the previous terminal.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
text: function(x,
y,
w,
h,
str,
align,
valign,
vertical,
wrap,
format)
Paints the given text.
mxCellEditor.prototype.textarea
Holds the input textarea.
var textEnabled
Specifies if text output should be enabled.
var textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
Fires between begin- and endUpdate in toggleCells.
mxGraph.prototype.toggleCells = function(show,
cells,
includeEdges)
Sets the visible state of the specified cells and all connected edges if includeEdges is true.
mxGraph.prototype.toggleCellStyle = function(key,
defaultValue,
cell)
Toggles the boolean value for the given key in the style of the given cell.
mxGraph.prototype.toggleCellStyleFlags = function(key,
flag,
cells)
Toggles the given bit for the given key in the styles of the specified cells.
mxGraph.prototype.toggleCellStyles = function(key,
defaultValue,
cells)
Toggles the boolean value for the given key in the style of the given cells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
TopToBottom: function(state,
source,
target,
points,
result)
Implements a horizontal elbow edge.
toRadians: function(deg)
Converts the given degree to radians.
mxCellOverlay.prototype.toString = function()
Returns the textual representation of the overlay to be used as the tooltip.
toString: function(obj)
Returns a textual representation of the specified object.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.transformControlPoint = function(state,
pt)
Transforms the given control point to an absolute point.
mxGeometry.prototype.translate = function(dx,
dy)
Translates the geometry by the specified amount.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxPath.prototype.translate
mxPoint that specifies the translation of the complete path.
translate: function(dx,
dy)
Translates the current graphics object.
translate: function(dx,
dy)
Translates the current graphics object.
Specifies the event name for translate.
Fires after the translate was changed in setTranslate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxGraph.prototype.translateCell = function(cell,
dx,
dy)
Translates the geometry of the given cell and stores the new, translated geometry in the model as an atomic change.
mxCellStatePreview.prototype.translateState = function(parentState,
state,
dx,
dy)
mxMedianHybridCrossingReduction.prototype.transpose = function(
   mainLoopIteration,
   model
)
Takes each possible adjacent cell pair on each rank and checks if swapping them around reduces the number of crossing
mxGraph.prototype.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxGraphLayout.traverse = function(vertex,
directed,
func,
edge,
visited)
Traverses the (directed) graph invoking the given function for each visited vertex and edge.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to navigate edges whose terminal vertices have different parents but are in the same ancestry chain
mxEditor.prototype.treeLayout = function (cell,
horizontal)
Executes a vertical or horizontal compact tree layout using the specified cell as an argument.
TrianglePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes a triangle perimeter.
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxUndoManager.prototype.trim = function()
Removes all pending steps after indexOfNextAdd from the history, invoking die on each edit.
trim: function(str,
chars)
Strips all whitespaces from both end of the string.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
diff --git a/docs/js-api/index/General18.html b/docs/js-api/index/General18.html index 396535c5f..d69678379 100644 --- a/docs/js-api/index/General18.html +++ b/docs/js-api/index/General18.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 UNDO
 undoableEditHappened, mxUndoManager
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 UP
 update
 UPDATE_CELL_SIZE
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHandler, mxLayoutManager
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateLevel, mxGraphModel
 updateMouseEvent, mxGraph
 updateOnPan, mxOutline
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateStyle, mxGraphView
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useGuidesForEvent, mxGraphHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
U
 undo
 UNDO
 undoableEditHappened, mxUndoManager
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS
 ungroupCells, mxGraph
 union, mxVertexHandler
 unmark, mxCellMarker
 UP
 update
 UPDATE_CELL_SIZE
 updateAlternateBounds, mxGraph
 updateAnimation
 updateAspect, mxImageShape
 updateBoundingBox
 updateCellSize, mxGraph
 updateCurrentState, mxConnectionHandler
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateEdgeBounds, mxGraphView
 updateEdgeLabelOffset, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateGroupBounds, mxGraph
 updateHandler, mxLayoutManager
 updateHtmlCanvasSize, mxGraphView
 updateHtmlShape, mxShape
 updateIcons, mxConnectionHandler
 updateLevel, mxGraphModel
 updateMouseEvent, mxGraph
 updateOnPan, mxOutline
 updatePoints, mxGraphView
 updatePreviewShape, mxGraphHandler
 updatePreviewState, mxEdgeHandler
 updateStyle, mxGraphView
 updateSvgBounds, mxShape
 updateSvgGlassPane, mxShape
 updateSvgNode
 updateSvgPath, mxShape
 updateSvgScale, mxShape
 updateSvgShape, mxShape
 updateSvgTransform, mxShape
 updateTableStyle, mxText
 updateTableWidth, mxText
 updateVertexLabelOffset, mxGraphView
 updateVmlDashStyle, mxShape
 updateVmlFill, mxShape
 updateVmlGlassPane, mxShape
 updateVmlMarkerOpacity, mxConnector
 updateVmlShape, mxShape
 updateVmlStrokeColor, mxShape
 updateVmlStrokeNode, mxShape
 updatingDocumentResource, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useGuidesForEvent, mxGraphHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
-
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
Specifies the event name for undo.
Fires after the change was dispatched in endUpdate.
Fires after the selection was changed in changeSelection.
Fires after the root was changed in setCurrentRoot.
Fires afer a significant edit was undone in undo.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Fires between begin- and endUpdate in ungroupCells.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
Specifies the event name for up.
Fire if the current root is changed by executing an mxCurrentRootChange.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
Specifies the event name for updateCellSize.
Fires between begin- and endUpdate in updateCellSize.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
+
mxEditor.prototype.undo = function ()
Undo the last change in graph.
mxUndoableEdit.prototype.undo = function()
Undoes all changes in this edit.
mxUndoManager.prototype.undo = function()
Undoes the last change.
Specifies the event name for undo.
Fires after the change was dispatched in endUpdate.
Fires after the selection was changed in changeSelection.
Fires after the root was changed in setCurrentRoot.
Fires afer a significant edit was undone in undo.
mxUndoManager.prototype.undoableEditHappened = function(undoableEdit)
Method to be called to add new undoable edits to the history.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Fires between begin- and endUpdate in ungroupCells.
mxGraph.prototype.ungroupCells = function(cells)
Ungroups the given cells by moving the children the children to their parents parent and removing the empty groups.
mxVertexHandler.prototype.union = function(bounds,
dx,
dy,
index,
gridEnabled,
scale,
tr)
Returns the union of the given bounds and location for the specified handle index.
mxCellMarker.prototype.unmark = function()
Hides the marker and fires a mark event.
Specifies the event name for up.
Fire if the current root is changed by executing an mxCurrentRootChange.
mxConstraintHandler.prototype.update = function(me,
source)
Updates the state of this handler based on the given mxMouseEvent.
mxOutline.prototype.update = function(revalidate)
Updates the outline.
mxRubberband.prototype.update = function(x,
y)
Sets currentX and currentY and calls repaint.
Specifies the event name for updateCellSize.
Fires between begin- and endUpdate in updateCellSize.
mxGraph.prototype.updateAlternateBounds = function(cell,
geo,
willCollapse)
Updates or sets the alternate bounds in the given geometry for the given cell depending on whether the cell is going to be collapsed.
mxAnimation.prototype.updateAnimation = function()
Hook for subclassers to implement the animation.
mxMorphing.prototype.updateAnimation = function()
Animation step.
mxImageShape.prototype.updateAspect = function(w,
h)
Updates the aspect of the image for the given image width and height.
Updates the boundingBox for this shape.
mxShape.prototype.updateBoundingBox = function()
Updates the boundingBox for this shape using createBoundingBox and augmentBoundingBox and stores the result in boundingBox.
mxText.prototype.updateBoundingBox = function()
Overrides method to do nothing.
mxGraph.prototype.updateCellSize = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using cellSizeUpdated.
mxConnectionHandler.prototype.updateCurrentState = function(me)
Updates the current state for a given mouse move event by using the marker.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxGraphView.prototype.updateEdgeBounds = function(state)
Updates the given state using the bounding box of the absolute points.
mxGraphView.prototype.updateEdgeLabelOffset = function(state)
Updates mxCellState.absoluteOffset for the given state.
mxGraphModel.prototype.updateEdgeParent = function(edge,
root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
mxGraphModel.prototype.updateEdgeParents = function(cell,
root)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
mxGraphView.prototype.updateFixedTerminalPoint = function(edge,
terminal,
source,
constraint)
Sets the fixed source or target terminal point on the given edge.
mxGraphView.prototype.updateFixedTerminalPoints = function(edge,
source,
target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
mxGraphView.prototype.updateFloatingTerminalPoint = function(edge,
start,
end,
source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
mxGraphView.prototype.updateFloatingTerminalPoints = function(state,
source,
target)
Updates the terminal points in the given state after the edge style was computed for the edge.
mxGraph.prototype.updateGroupBounds = function(cells,
border,
moveGroup)
Updates the bounds of the given array of groups so that it includes all child vertices.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphView.prototype.updateHtmlCanvasSize = function(width,
height)
Updates the size of the HTML canvas.
mxShape.prototype.updateHtmlShape = function(node)
Updates the bounds or points of the specified HTML node and updates the inner children to reflect the changes.
mxConnectionHandler.prototype.updateIcons = function(state,
icons,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxGraph.prototype.updateMouseEvent = function(me)
Sets the graphX and graphY properties if the given mxMouseEvent if required.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updatePoints = function(edge,
points,
source,
target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
mxGraphHandler.prototype.updatePreviewShape = function()
Updates the bounds of the preview shape.
mxEdgeHandler.prototype.updatePreviewState = function(edge,
point,
terminalState)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxShape.prototype.updateSvgBounds = function(node)
Updates the bounds of the given node using bounds.
mxShape.prototype.updateSvgGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxDoubleEllipse.prototype.updateSvgNode = function(node,
inset)
Updates the given node to reflect the new bounds and scale.
mxEllipse.prototype.updateSvgNode = function(node)
Updates the given node to reflect the new bounds and scale.
mxShape.prototype.updateSvgPath = function(node)
Updates the path of the given node using points.
mxShape.prototype.updateSvgScale = function(node)
Updates the properties of the given node that depend on the scale and checks the crisp rendering attribute.
mxShape.prototype.updateSvgShape = function(node)
Updates the bounds or points of the specified SVG node and updates the inner children to reflect the changes.
mxShape.prototype.updateSvgTransform = function(node,
shadow)
Updates the tranform of the given node.
Updates the style of the given HTML table and the value within the table.
mxText.prototype.updateTableWidth = function(table)
Updates the width of the given HTML table.
mxGraphView.prototype.updateVertexLabelOffset = function(state)
Updates the absoluteOffset of the given vertex cell state.
mxShape.prototype.updateVmlDashStyle = function()
Updates the dashstyle in the stroke node.
mxShape.prototype.updateVmlFill = function(node,
c1,
c2,
dir,
alpha)
Updates the given VML fill node.
mxShape.prototype.updateVmlGlassPane = function()
Draws the glass overlay if mxConstants.STYLE_GLASS is 1.
mxConnector.prototype.updateVmlMarkerOpacity = function()
Updates the opacity for the markers in VML.
mxShape.prototype.updateVmlShape = function(node)
Updates the bounds or points of the specified VML node and updates the inner children to reflect the changes.
mxShape.prototype.updateVmlStrokeColor = function(node)
Updates the VML stroke color for the given node.
mxShape.prototype.updateVmlStrokeNode = function(parent)
Creates the stroke node for VML.
Specifies the resource key for the status message while the document is being updated.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxGraphHandler.prototype.useGuidesForEvent = function(me)
Returns true if the guides should be used for the given mxMouseEvent.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
diff --git a/docs/js-api/index/General19.html b/docs/js-api/index/General19.html index fdc831688..1f90cb9df 100644 --- a/docs/js-api/index/General19.html +++ b/docs/js-api/index/General19.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
MedianCellSortermxActormxAnimationmxArrowmxAutoSaveManagermxCellmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCircleLayoutmxClientmxClipboardmxCodecmxCodecRegistrymxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConnectormxConstantsmxConstraintHandlermxCoordinateAssignmentmxCylindermxDefaultKeyHandlermxDefaultPopupMenumxDefaultToolbarmxDoubleEllipsemxDragSourcemxEdgeHandlermxElbowEdgeHandlermxEllipsemxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGeometrymxGraphmxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGuidemxHierarchicalLayoutmxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLinemxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxPanningManagermxParallelEdgeLayoutmxPartitionLayoutmxPathmxPointmxPolylinemxPopupMenumxPrintPreviewmxRectanglemxResourcesmxRhombusmxRubberbandmxSelectionCellsHandlermxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStencilShapemxStyleRegistrymxSvgCanvas2DmxSwimlanemxSwimlaneManagermxTemporaryCellStatesmxTextmxToolbarmxTooltipHandlermxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxVertexHandlermxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper, mxGraphHierarchyModel
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalTextDegree, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited, WeightedCellSorter
 vmlNodes
 vmlScale
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBounds, mxGraphView
 validateCell, mxGraph
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validatePoints, mxGraphView
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
MedianCellSortermxActormxAnimationmxArrowmxAutoSaveManagermxCellmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCircleLayoutmxClientmxClipboardmxCodecmxCodecRegistrymxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConnectormxConstantsmxConstraintHandlermxCoordinateAssignmentmxCylindermxDefaultKeyHandlermxDefaultPopupMenumxDefaultToolbarmxDoubleEllipsemxDragSourcemxEdgeHandlermxElbowEdgeHandlermxEllipsemxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGeometrymxGraphmxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGuidemxHierarchicalLayoutmxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLinemxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxPanningManagermxParallelEdgeLayoutmxPartitionLayoutmxPathmxPointmxPolylinemxPopupMenumxPrintPreviewmxRectanglemxResourcesmxRhombusmxRubberbandmxSelectionCellsHandlermxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStencilShapemxStyleRegistrymxSvgCanvas2DmxSwimlanemxSwimlaneManagermxTemporaryCellStatesmxTextmxToolbarmxTooltipHandlermxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxVertexHandlermxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper, mxGraphHierarchyModel
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalTextDegree, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited, WeightedCellSorter
 vmlNodes
 vmlScale
-
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxText.prototype.verticalTextDegree
Specifies the degree to be used for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
mxConnector.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxCylinder.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxDoubleEllipse.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLabel.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLine.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxShape.prototype.vmlNodes
Array if VML node names to fix in IE8 standards mode.
mxSwimlane.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxActor.prototype.vmlScale
Renders VML with a scale of 2.
mxCylinder.prototype.vmlScale
Renders VML with a scale of 2.
mxDoubleEllipse.prototype.vmlScale
Renders VML with a scale of 2.
mxShape.prototype.vmlScale
Internal scaling for VML using coordsize for better precision.
mxStencilShape.prototype.vmlScale
Renders VML with a scale of 4.
+
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
First validates all bounds and then validates all points recursively on all visible cells starting at the given cell.
mxGraphView.prototype.validateBackground = function()
Validates the background image.
mxGraphView.prototype.validateBounds = function(parentState,
cell)
Validates the bounds of the given parent’s child using the given parent state as the origin for the child.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxGraphView.prototype.validatePoints = function(parentState,
cell)
Validates the points for the state of the given cell recursively if the cell is not collapsed and returns the bounding box of all visited states as an mxRectangle.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxText.prototype.verticalTextDegree
Specifies the degree to be used for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
mxConnector.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxCylinder.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxDoubleEllipse.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLabel.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLine.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxShape.prototype.vmlNodes
Array if VML node names to fix in IE8 standards mode.
mxSwimlane.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxActor.prototype.vmlScale
Renders VML with a scale of 2.
mxCylinder.prototype.vmlScale
Renders VML with a scale of 2.
mxDoubleEllipse.prototype.vmlScale
Renders VML with a scale of 2.
mxShape.prototype.vmlScale
Internal scaling for VML using coordsize for better precision.
mxStencilShape.prototype.vmlScale
Renders VML with a scale of 4.
diff --git a/docs/js-api/index/General20.html b/docs/js-api/index/General20.html index 659e30d5f..5e1281e78 100644 --- a/docs/js-api/index/General20.html +++ b/docs/js-api/index/General20.html @@ -11,21 +11,21 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 w0, mxStencil
 warn, mxLog
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 Windows, mxEditor
 wnd, mxPrintPreview
 wrap, mxStackLayout
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoom, mxGraph
 zoomActual, mxGraph
 zoomFactor, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 w0, mxStencil
 warn, mxLog
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 WeightedCellSorter
 weightedMedian, mxMedianHybridCrossingReduction
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 Windows, mxEditor
 wnd, mxPrintPreview
 wrap, mxStackLayout
 write
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeGraphModel, mxEditor
 writeHead, mxPrintPreview
 writeln
 writePrimitiveAttribute, mxObjectCodec
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoom, mxGraph
 zoomActual, mxGraph
 zoomFactor, mxGraph
 zoomIn, mxGraph
 zoomOut, mxGraph
 zoomTo, mxGraph
-
mxStencil.prototype.w0
Holds the width of the shape.
warn: function()
Adds all arguments to the console if WARN is enabled.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
+
mxStencil.prototype.w0
Holds the width of the shape.
warn: function()
Adds all arguments to the console if WARN is enabled.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges.
function WeightedCellSorter(cell,
weightedValue)
Constructs a new weighted cell sorted for the given cell and weight.
mxMedianHybridCrossingReduction.prototype.weightedMedian = function(iteration,
model)
Sweeps up or down the layout attempting to minimise the median placement of connected cells on adjacent ranks
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
write: function()
Adds the specified strings to the console.
mxPath.prototype.write = function(string)
Writes directly into the path.
write: function(parent,
text)
Creates a text node for the given string and appends it to the given parent.
mxObjectCodec.prototype.writeAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
mxObjectCodec.prototype.writeComplexAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as a child node of the given node.
mxEditor.prototype.writeGraphModel = function (linefeed)
Hook to create the string representation of the diagram.
mxPrintPreview.prototype.writeHead = function(doc,
css)
Writes the HEAD section into the given document, without the opening and closing HEAD tags.
writeln: function()
Adds the specified strings to the console, appending a linefeed at the end of each string.
writeln: function(parent,
text)
Creates a text node for the given string and appends it to the given parent with an additional linefeed.
mxObjectCodec.prototype.writePrimitiveAttribute = function(enc,
obj,
attr,
value,
node)
Writes the given value as an attribute of the given node.
-
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
-
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
-
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
+
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoom = function(factor,
center)
Zooms the graph using the given factor.
mxGraph.prototype.zoomActual = function()
Resets the zoom and panning in the view.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
mxGraph.prototype.zoomIn = function()
Zooms into the graph by zoomFactor.
mxGraph.prototype.zoomOut = function()
Zooms out of the graph by zoomFactor.
mxGraph.prototype.zoomTo = function(scale,
center)
Zooms the graph to the given scale with an optional boolean center argument, which is passd to zoom.
diff --git a/docs/js-api/index/General3.html b/docs/js-api/index/General3.html index 53390d757..ca95e081e 100644 --- a/docs/js-api/index/General3.html +++ b/docs/js-api/index/General3.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
C
 calcAttraction, mxFastOrganicLayout
 calcPositions, mxFastOrganicLayout
 calcRepulsion, mxFastOrganicLayout
 calculateCrossings, mxMedianHybridCrossingReduction
 calculatedWeightedValue, mxCoordinateAssignment
 calculateRankCrossing, mxMedianHybridCrossingReduction
 calculateWidestRank, mxCoordinateAssignment
 canExportCell, mxGraph
 canImportCell, mxGraph
 canRedo, mxUndoManager
 canUndo, mxUndoManager
 captureDocumentGesture, mxGraphView
 cascadeOpacity
 cell
 Cell alignment and orientation, mxGraph
 Cell cloning,insertion and removal, mxGraph
 Cell connecting and connection constraints, mxGraph
 Cell moving, mxGraph
 Cell retrieval, mxGraph
 Cell sizing, mxGraph
 Cell styles, mxGraph
 Cell visibility, mxGraph
 CELL_CONNECTED
 cellAdded
 cellCloned, mxGraphModel
 cellConnected, mxGraph
 cellEditor, mxGraph
 cellLabelChanged, mxGraph
 cellLocation, mxFastOrganicLayout
 cellRemoved
 cellRenderer, mxGraph
 cellResized, mxSpaceManager
 cells
 CELLS_ADDED
 CELLS_FOLDED
 CELLS_MOVED
 CELLS_ORDERED
 CELLS_REMOVED
 CELLS_RESIZED
 CELLS_TOGGLED, mxEvent
 cellsAdded
 cellsBendable, mxGraph
 cellsCloneable, mxGraph
 cellsDeletable, mxGraph
 cellsDisconnectable, mxGraph
 cellsEditable, mxGraph
 cellsFolded, mxGraph
 cellSizeUpdated, mxGraph
 cellsLocked, mxGraph
 cellsMovable, mxGraph
 cellsMoved
 cellsOrdered, mxGraph
 cellsRemoved, mxGraph
 cellsResizable, mxGraph
 cellsResized
 cellsSelectable, mxGraph
 cellsToggled, mxGraph
 centerZoom, mxGraph
 CHANGE
 changeHandler
 changePoints
 changes, mxUndoableEdit
 changeSelection, mxGraphSelectionModel
 changeTerminalPoint
 channelBuffer
 check, mxMultiplicity
 checkNeighbors, mxMultiplicity
 checkTerminal, mxMultiplicity
 checkType, mxMultiplicity
 childMoved, mxGraphView
 children, mxCell
 circle, mxCircleLayout
 clear
 CLEAR
 clearCellOverlays, mxGraph
 clearSelection
 clearSelectionOnBackground, mxPanningHandler
 click, mxGraph
 CLICK
 clip
 clone
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells
 cloneEnabled
 cloneInvalidEdges, mxGraph
 clonePreviewState, mxEdgeHandler
 cloneTemplate, mxObjectCodec
 cloneValue, mxCell
 close
 CLOSE, mxEvent
 closeImage, mxWindow
 closeResource, mxUtils
 codec, mxSession
 codecs, mxCodecRegistry
 collapsed, mxCell
 collapsedImage, mxGraph
 collapsedStateForCellChanged, mxGraphModel
 collapseExpandResource, mxGraph
 collapseToPreferredSize, mxGraph
 compare
 compressed, mxXmlCanvas2D
 computeAspect, mxStencil
 config, mxDefaultPopupMenu
 configure, mxEditor
 configureHtmlShape
 configureShape, mxCellRenderer
 configureSvgShape
 configureTransparentBackground
 configureVmlShape
 confirm, mxUtils
 connect
 CONNECT
 CONNECT_CELL
 CONNECT_HANDLE_FILLCOLOR, mxConstants
 connectable, mxCell
 connectableEdges, mxGraph
 connectCell, mxGraph
 connected, mxSession
 connectIconOffset, mxConnectionHandler
 connectImage, mxConnectionHandler
 connectOnDrop
 connectsAsSource, mxGraphHierarchyNode
 connectsAsTarget, mxGraphHierarchyNode
 consoleName, mxLog
 constrainChild, mxGraph
 constrainChildren, mxGraph
 constraintHandler
 constraints, mxStencil
 consume
 consumeCycleAttribute, mxEditor
 consumed
 container, mxToolbar
 contains
 containsValidationErrorsResource, mxGraph
 content, mxWindow
 controlKeys, mxKeyHandler
 Controls and Handlers, mxEditor
 controlShiftKeys, mxKeyHandler
 convert, mxUrlConverter
 converter
 convertPoint
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 convertWaypoint, mxConnectionHandler
 copy
 count, mxCellStatePreview
 counter, mxObjectIdentity
 countError, mxMultiplicity
 create
 createBackgroundPageShape, mxGraphView
 createBends
 createBoundingBox, mxShape
 createBounds, mxVertexHandler
 createCellEditor, mxGraph
 createCellOverlays, mxCellRenderer
 createCellRenderer, mxGraph
 createConditions, mxDefaultPopupMenu
 createControl, mxCellRenderer
 createDashPattern, mxConnector
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createDiagramLayout, mxEditor
 createDragElement, mxDragSource
 createEdge
 createEdgeState, mxConnectionHandler
 createForeignObject, mxText
 createGraph, mxEditor
 createGraphView, mxGraph
 createGroup, mxEditor
 createGroupCell, mxGraph
 createGuideShape, mxGuide
 createHandler, mxGraph
 createHandlers, mxGraph
 createHandleShape, mxEdgeHandler
 createHtml
 createHtmlPane, mxGraphView
 createHtmlTable, mxText
 createIcons, mxConnectionHandler
 createId, mxGraphModel
 createIds, mxGraphModel
 createImage, mxUtils
 createInternalCells, mxGraphHierarchyModel
 createLabel, mxCellRenderer
 createLayoutManager, mxEditor
 createLine, mxCompactTreeLayout
 createMarker
 createMenu, mxDefaultPopupMenu
 createNode, mxCompactTreeLayout
 createPageSelector, mxPrintPreview
 createPanningManager, mxGraph
 createPath, mxShape
 createPoints, mxShape
 createPopupMenu, mxEditor
 createPreviewElement, mxDragSource
 createPreviewShape, mxGraphHandler
 createProperties, mxEditor
 createRoot, mxGraphModel
 createSelectionModel, mxGraph
 createSelectionShape
 createSession, mxEditor
 createShape
 createSizer
 createSizerShape, mxVertexHandler
 createState, mxGraphView
 createStylesheet, mxGraph
 createSubmenu, mxPopupMenu
 createSvg
 createSvgGradient, mxShape
 createSvgGroup, mxShape
 createSvgPipe, mxShape
 createSvgShadow, mxShape
 createSvgSpan
 createSwimlaneLayout, mxEditor
 createSwimlaneManager, mxEditor
 createTarget, mxConnectionHandler
 createTargetVertex, mxConnectionHandler
 createTasks, mxEditor
 createToolbar, mxEditor
 createUndoableEdit
 createVertex, mxGraph
 createVirtualBend, mxElbowEdgeHandler
 createVml
 createVmlImage, mxLabel
 createVmlPane, mxGraphView
 createVmlShadow, mxShape
 createXmlDocument, mxUtils
 crisp
 crossingStage, mxHierarchicalLayout
 currentBestCrossings, mxMedianHybridCrossingReduction
 currentColor, mxCellMarker
 currentDropTarget, mxDragSource
 currentDx, mxGraphHandler
 currentDy, mxGraphHandler
 currentEdit, mxGraphModel
 currentFileResource, mxEditor
 currentGraph, mxDragSource
 currentGuide, mxDragSource
 currentPoint, mxDragSource
 currentRoot, mxGraphView
 currentX, mxRubberband
 currentXDelta, mxCoordinateAssignment
 currentY, mxRubberband
 cursor, mxCellOverlay
 CURSOR_BEND_HANDLE, mxConstants
 CURSOR_CONNECT, mxConstants
 CURSOR_LABEL_HANDLE, mxConstants
 CURSOR_MOVABLE_EDGE, mxConstants
 CURSOR_MOVABLE_VERTEX, mxConstants
 curveTo
 cut, mxClipboard
 cycleAttribute, mxEditor
 cycleAttributeIndex, mxEditor
 cycleAttributeName, mxEditor
 cycleAttributeValues, mxEditor
 cycleStage, mxHierarchicalLayout
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
C
 calcAttraction, mxFastOrganicLayout
 calcPositions, mxFastOrganicLayout
 calcRepulsion, mxFastOrganicLayout
 calculateCrossings, mxMedianHybridCrossingReduction
 calculatedWeightedValue, mxCoordinateAssignment
 calculateRankCrossing, mxMedianHybridCrossingReduction
 calculateWidestRank, mxCoordinateAssignment
 canExportCell, mxGraph
 canImportCell, mxGraph
 canRedo, mxUndoManager
 canUndo, mxUndoManager
 captureDocumentGesture, mxGraphView
 cascadeOpacity
 cell
 Cell alignment and orientation, mxGraph
 Cell cloning,insertion and removal, mxGraph
 Cell connecting and connection constraints, mxGraph
 Cell moving, mxGraph
 Cell retrieval, mxGraph
 Cell sizing, mxGraph
 Cell styles, mxGraph
 Cell visibility, mxGraph
 CELL_CONNECTED
 cellAdded
 cellCloned, mxGraphModel
 cellConnected, mxGraph
 cellEditor, mxGraph
 cellLabelChanged, mxGraph
 cellLocation, mxFastOrganicLayout
 cellRemoved
 cellRenderer, mxGraph
 cellResized, mxSpaceManager
 cells
 CELLS_ADDED
 CELLS_FOLDED
 CELLS_MOVED
 CELLS_ORDERED
 CELLS_REMOVED
 CELLS_RESIZED
 CELLS_TOGGLED, mxEvent
 cellsAdded
 cellsBendable, mxGraph
 cellsCloneable, mxGraph
 cellsDeletable, mxGraph
 cellsDisconnectable, mxGraph
 cellsEditable, mxGraph
 cellsFolded, mxGraph
 cellSizeUpdated, mxGraph
 cellsLocked, mxGraph
 cellsMovable, mxGraph
 cellsMoved
 cellsOrdered, mxGraph
 cellsRemoved, mxGraph
 cellsResizable, mxGraph
 cellsResized
 cellsSelectable, mxGraph
 cellsToggled, mxGraph
 centerZoom, mxGraph
 CHANGE
 changeHandler
 changePoints
 changes, mxUndoableEdit
 changeSelection, mxGraphSelectionModel
 changeTerminalPoint
 channelBuffer
 check, mxMultiplicity
 checkNeighbors, mxMultiplicity
 checkTerminal, mxMultiplicity
 checkType, mxMultiplicity
 childMoved, mxGraphView
 children, mxCell
 circle, mxCircleLayout
 clear
 CLEAR
 clearCellOverlays, mxGraph
 clearSelection
 clearSelectionOnBackground, mxPanningHandler
 click, mxGraph
 CLICK
 clip
 clone
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells
 cloneEnabled
 cloneInvalidEdges, mxGraph
 clonePreviewState, mxEdgeHandler
 cloneTemplate, mxObjectCodec
 cloneValue, mxCell
 close
 CLOSE, mxEvent
 closeImage, mxWindow
 closeResource, mxUtils
 codec, mxSession
 codecs, mxCodecRegistry
 collapsed, mxCell
 collapsedImage, mxGraph
 collapsedStateForCellChanged, mxGraphModel
 collapseExpandResource, mxGraph
 collapseToPreferredSize, mxGraph
 compare
 compressed, mxXmlCanvas2D
 computeAspect, mxStencil
 config, mxDefaultPopupMenu
 configure, mxEditor
 configureHtmlShape
 configureShape, mxCellRenderer
 configureSvgShape
 configureTransparentBackground
 configureVmlShape
 confirm, mxUtils
 connect
 CONNECT
 CONNECT_CELL
 CONNECT_HANDLE_FILLCOLOR, mxConstants
 connectable, mxCell
 connectableEdges, mxGraph
 connectCell, mxGraph
 connected, mxSession
 connectIconOffset, mxConnectionHandler
 connectImage, mxConnectionHandler
 connectOnDrop
 connectsAsSource, mxGraphHierarchyNode
 connectsAsTarget, mxGraphHierarchyNode
 consoleName, mxLog
 constrainChild, mxGraph
 constrainChildren, mxGraph
 constraintHandler
 constraints, mxStencil
 consume
 consumeCycleAttribute, mxEditor
 consumed
 consumePanningTrigger, mxPanningHandler
 container, mxToolbar
 contains
 containsValidationErrorsResource, mxGraph
 content, mxWindow
 controlKeys, mxKeyHandler
 Controls and Handlers, mxEditor
 controlShiftKeys, mxKeyHandler
 convert, mxUrlConverter
 converter
 convertPoint
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 convertWaypoint, mxConnectionHandler
 copy
 count, mxCellStatePreview
 counter, mxObjectIdentity
 countError, mxMultiplicity
 create
 createBackgroundPageShape, mxGraphView
 createBends
 createBoundingBox, mxShape
 createBounds, mxVertexHandler
 createCellEditor, mxGraph
 createCellOverlays, mxCellRenderer
 createCellRenderer, mxGraph
 createConditions, mxDefaultPopupMenu
 createControl, mxCellRenderer
 createDashPattern, mxConnector
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createDiagramLayout, mxEditor
 createDragElement, mxDragSource
 createEdge
 createEdgeState, mxConnectionHandler
 createForeignObject, mxText
 createGraph, mxEditor
 createGraphView, mxGraph
 createGroup, mxEditor
 createGroupCell, mxGraph
 createGuideShape, mxGuide
 createHandler, mxGraph
 createHandlers, mxGraph
 createHandleShape, mxEdgeHandler
 createHtml
 createHtmlPane, mxGraphView
 createHtmlTable, mxText
 createIcons, mxConnectionHandler
 createId, mxGraphModel
 createIds, mxGraphModel
 createImage, mxUtils
 createInternalCells, mxGraphHierarchyModel
 createLabel, mxCellRenderer
 createLayoutManager, mxEditor
 createLine, mxCompactTreeLayout
 createMarker
 createMenu, mxDefaultPopupMenu
 createNode, mxCompactTreeLayout
 createPageSelector, mxPrintPreview
 createPanningManager, mxGraph
 createPath, mxShape
 createPoints, mxShape
 createPopupMenu, mxEditor
 createPreviewElement, mxDragSource
 createPreviewShape, mxGraphHandler
 createProperties, mxEditor
 createRoot, mxGraphModel
 createSelectionModel, mxGraph
 createSelectionShape
 createSession, mxEditor
 createShape
 createSizer
 createSizerShape, mxVertexHandler
 createState, mxGraphView
 createStylesheet, mxGraph
 createSubmenu, mxPopupMenu
 createSvg
 createSvgGradient, mxShape
 createSvgGroup, mxShape
 createSvgPipe, mxShape
 createSvgShadow, mxShape
 createSvgSpan
 createSwimlaneLayout, mxEditor
 createSwimlaneManager, mxEditor
 createTarget, mxConnectionHandler
 createTargetVertex, mxConnectionHandler
 createTasks, mxEditor
 createToolbar, mxEditor
 createUndoableEdit
 createVertex, mxGraph
 createVirtualBend, mxElbowEdgeHandler
 createVml
 createVmlImage, mxLabel
 createVmlPane, mxGraphView
 createVmlShadow, mxShape
 createXmlDocument, mxUtils
 crisp
 crossingStage, mxHierarchicalLayout
 currentBestCrossings, mxMedianHybridCrossingReduction
 currentColor, mxCellMarker
 currentDropTarget, mxDragSource
 currentDx, mxGraphHandler
 currentDy, mxGraphHandler
 currentEdit, mxGraphModel
 currentFileResource, mxEditor
 currentGraph, mxDragSource
 currentGuide, mxDragSource
 currentPoint, mxDragSource
 currentRoot, mxGraphView
 currentX, mxRubberband
 currentXDelta, mxCoordinateAssignment
 currentY, mxRubberband
 cursor, mxCellOverlay
 CURSOR_BEND_HANDLE, mxConstants
 CURSOR_CONNECT, mxConstants
 CURSOR_LABEL_HANDLE, mxConstants
 CURSOR_MOVABLE_EDGE, mxConstants
 CURSOR_MOVABLE_VERTEX, mxConstants
 curveTo
 cut, mxClipboard
 cycleAttribute, mxEditor
 cycleAttributeIndex, mxEditor
 cycleAttributeName, mxEditor
 cycleAttributeValues, mxEditor
 cycleStage, mxHierarchicalLayout
-
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
mxGraphView.prototype.captureDocumentGesture
Specifies if a gesture should be captured when it goes outside of the graph container.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
MedianCellSorter.prototype.cell
The cell whose median value is being calculated
mxCellState.prototype.cell
Reference to the mxCell that is represented by this state.
mxGraphHierarchyNode.prototype.cell
The graph cell this object represents.
WeightedCellSorter.prototype.cell
The cell whose median value is being calculated.
Specifies the event name for cellConnected.
Fires between begin- and endUpdate in cellConnected.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellEditor
Holds the mxCellEditor that is used as the in-place editing.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxFastOrganicLayout.prototype.cellLocation
An array of locally stored co-ordinate positions for the vertices.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxGraph.prototype.cellRenderer
Holds the mxCellRenderer for rendering the cells in the graph.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
Holds the array of mxCells currently in the clipboard.
mxGraphModel.prototype.cells
Maps from Ids to cells.
mxMorphing.prototype.cells
Optional array of cells to be animated.
Specifies the event name for cellsAdded.
Fires between begin- and endUpdate in cellsAdded.
Specifies the event name for cellsFolded.
Fires between begin- and endUpdate in cellsFolded.
Specifies the event name for cellsMoved.
Fires between begin- and endUpdate in cellsMoved.
Specifies the event name for cellsOrdered.
Fires between begin- and endUpdate in cellsOrdered.
Specifies the event name for cellsRemoved.
Fires between begin- and endUpdate in cellsRemoved.
Specifies the event name for cellsResized.
Fires between begin- and endUpdate in cellsResized.
Specifies the event name for cellsToggled.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsBendable
Specifies the return value for isCellsBendable.
mxGraph.prototype.cellsCloneable
Specifies the return value for isCellCloneable.
mxGraph.prototype.cellsDeletable
Specifies the return value for isCellDeletable.
mxGraph.prototype.cellsDisconnectable
Specifies the return value for isCellDisconntable.
mxGraph.prototype.cellsEditable
Specifies the return value for isCellEditable.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsLocked
Specifies the return value for isCellLocked.
mxGraph.prototype.cellsMovable
Specifies the return value for isCellMovable.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResizable
Specifies the return value for isCellResizable.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsSelectable
Specifies the return value for isCellSelectable.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxGraph.prototype.centerZoom
Specifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
Specifies the event name for change.
Fires when an undoable edit is dispatched.
Fires after the selection changes by executing an mxSelectionChange.
mxAutoSaveManager.prototype.changeHandler
Holds the function that handles graph model changes.
mxConnectionHandler.prototype.changeHandler
Holds the change event listener for later removal.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxUndoableEdit.prototype.changes
Array that contains the changes that make up this edit.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxCompactTreeLayout.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxCoordinateAssignment.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCell.prototype.children
Holds the child cells.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
Specifies the event name for clear.
Fires after clear was invoked.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxPanningHandler.prototype.clearSelectionOnBackground
Specifies if cells should be deselected if a popupmenu is displayed for the diagram background.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
Fires when the user clicks on the overlay.
Specifies the event name for click.
Fires in click after a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraphHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraph.prototype.cloneInvalidEdges
Specifies if edges that are cloned should be validated and only inserted if they are valid.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
Specifies the event name for close.
mxWindow.prototype.closeImage
URL of the image to be used for the close icon in the titlebar.
Specifies the resource key for the label of the close button.
mxSession.prototype.codec
Reference to the mxCodec used to encoding and decoding changes.
Maps from constructor names to codecs.
mxCell.prototype.collapsed
Specifies whether the cell is collapsed.
mxGraph.prototype.collapsedImage
Specifies the mxImage to indicate a collapsed state.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
mxGraph.prototype.collapseExpandResource
Specifies the resource key for the tooltip on the collapse/expand icon.
mxGraph.prototype.collapseToPreferredSize
Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
var compressed
Specifies if the output should be compressed by removing redundant calls.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxDefaultPopupMenu.prototype.config
XML node used as the description of new menu items.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
Fires between begin- and endUpdate in connect.
Specifies the event name for connect.
Fires after the session has been started, that is, after the response to the initial request was received and the session goes into polling mode.
Specifies the event name for connectCell.
Fires between begin- and endUpdate in connectCell.
Defines the color to be used for the connect handle fill color.
mxCell.prototype.connectable
Specifies whether the cell is connectable.
mxGraph.prototype.connectableEdges
Specifies if edges are connectable.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxSession.prototype.connected
mxConnectionHandler.prototype.connectIconOffset
Holds the offset for connect icons during connection preview.
mxConnectionHandler.prototype.connectImage
mxImage that is used to trigger the creation of a new connection.
mxDefaultToolbar.prototype.connectOnDrop
Specifies if elements should be connected if new cells are dropped onto connectable elements.
mxGraphHandler.prototype.connectOnDrop
Specifies if drop events are interpreted as new connections if no other drop action is defined.
mxGraphHierarchyNode.prototype.connectsAsSource
Collection of hierarchy edges that have this node as a source
mxGraphHierarchyNode.prototype.connectsAsTarget
Collection of hierarchy edges that have this node as a target
Specifies the name of the console window.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
mxGraph.prototype.constrainChildren
Specifies the return value for isConstrainChildren.
mxConnectionHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxEdgeHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxStencil.prototype.constraints
Holds an array of mxConnectionConstraints as defined in the shape.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxEventObject.prototype.consumed
Holds the consumed state.
mxMouseEvent.prototype.consumed
Holds the consumed state of this event.
mxToolbar.prototype.container
Reference to the DOM nodes that contains the toolbar.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxWindow.prototype.content
Reference to the DOM node that represents the window content.
mxKeyHandler.prototype.controlKeys
Maps from keycodes to functions for pressed control keys.
mxKeyHandler.prototype.controlShiftKeys
Maps from keycodes to functions for pressed control and shift keys.
convert: function(url)
Converts the given URL to an absolute URL.
var converter
Holds the mxUrlConverter to convert image URLs.
var converter
Holds the mxUrlConverter to convert image URLs.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
mxCellStatePreview.prototype.count
Contains the number of entries in the map.
Current counter for objects.
mxMultiplicity.prototype.countError
Holds the localized error message to be displayed if the number of connections for which the rule applies is smaller than min or greater than max.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
mxGraphModel.prototype.createIds
Specifies if the model should automatically create Ids for new cells.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTarget
Specifies if createTargetVertex should be called if no target was under the mouse for the new connection.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxEdgeHandler.prototype.crisp
Specifies if the edge handles should be rendered in crisp mode.
mxGraphHandler.prototype.crisp
Specifies if the move preview should be rendered in crisp mode if applicable.
mxGuide.prototype.crisp
Specifies if theguide should be rendered in crisp mode if applicable.
mxImageShape.prototype.crisp
Disables crisp rendering via attributes.
mxShape.prototype.crisp
Special attribute for SVG rendering to set the shape-rendering attribute to crispEdges in the output.
mxVertexHandler.prototype.crisp
Specifies if the selection bounds and handles should be rendered in crisp mode.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxMedianHybridCrossingReduction.prototype.currentBestCrossings
The total number of crossings found in the best configuration so far
mxCellMarker.prototype.currentColor
Holds the current marker color.
mxDragSource.prototype.currentDropTarget
Holds the current drop target under the mouse.
mxGraphHandler.prototype.currentDx
Stores the x-coordinate of the current mouse move.
mxGraphHandler.prototype.currentDy
Stores the y-coordinate of the current mouse move.
mxGraphModel.prototype.currentEdit
Holds the changes for the current transaction.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxDragSource.prototype.currentGraph
Reference to the mxGraph that is the current drop target.
mxDragSource.prototype.currentGuide
Holds an mxGuide for the currentGraph if dragPreview is not null.
mxDragSource.prototype.currentPoint
Holds the current drop location.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
mxRubberband.prototype.currentX
Holds the value of the x argument in the last call to update.
mxCoordinateAssignment.prototype.currentXDelta
The sum of x-displacements for the current iteration
mxRubberband.prototype.currentY
Holds the value of the y argument in the last call to update.
mxCellOverlay.prototype.cursor
Holds the cursor for the overlay.
Defines the cursor for a movable bend.
Defines the cursor for a connectable state.
Defines the cursor for a movable label.
Defines the cursor for a movable edge.
Defines the cursor for a movable vertex.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxEditor.prototype.cycleAttributeIndex
Index of the last consumed attribute index.
mxEditor.prototype.cycleAttributeName
Name of the attribute to be assigned a cycleAttributeValues when inserting new swimlanes.
mxEditor.prototype.cycleAttributeValues
Specifies the attribute values to be cycled when inserting new swimlanes.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
+
mxFastOrganicLayout.prototype.calcAttraction = function()
Calculates the attractive forces between all laid out nodes linked by edges
mxFastOrganicLayout.prototype.calcPositions = function()
Takes the displacements calculated for each cell and applies them to the local cache of cell positions.
mxFastOrganicLayout.prototype.calcRepulsion = function()
Calculates the repulsive forces between all laid out nodes
mxMedianHybridCrossingReduction.prototype.calculateCrossings = function(model)
Calculates the total number of edge crossing in the current graph.
mxCoordinateAssignment.prototype.calculatedWeightedValue = function(
   currentCell,
   collection
)
Calculates the priority the specified cell has based on the type of its cell and the cells it is connected to on the next layer
mxMedianHybridCrossingReduction.prototype.calculateRankCrossing = function(
   i,
   model
)
Calculates the number of edges crossings between the specified rank and the rank below it.
mxCoordinateAssignment.prototype.calculateWidestRank = function(graph,
model)
Calculates the width rank in the hierarchy.
mxGraph.prototype.canExportCell = function(cell)
Returns true if the given cell may be exported to the clipboard.
mxGraph.prototype.canImportCell = function(cell)
Returns true if the given cell may be imported from the clipboard.
mxUndoManager.prototype.canRedo = function()
Returns true if a redo is possible.
mxUndoManager.prototype.canUndo = function()
Returns true if an undo is possible.
mxGraphView.prototype.captureDocumentGesture
Specifies if a gesture should be captured when it goes outside of the graph container.
cascadeOpacity: function(graph,
cell,
opacity)
Sets the opacity on the given cell and its descendants.
cascadeOpacity: function(graph,
cell,
opacity)
See mxEffects.cascadeOpacity.
MedianCellSorter.prototype.cell
The cell whose median value is being calculated
mxCellState.prototype.cell
Reference to the mxCell that is represented by this state.
mxGraphHierarchyNode.prototype.cell
The graph cell this object represents.
WeightedCellSorter.prototype.cell
The cell whose median value is being calculated.
Specifies the event name for cellConnected.
Fires between begin- and endUpdate in cellConnected.
mxGraphModel.prototype.cellAdded = function(cell)
Inner callback to update cells when a cell has been added.
mxGraphSelectionModel.prototype.cellAdded = function(cell)
Inner callback to add the specified mxCell to the selection.
mxGraphModel.prototype.cellCloned = function(cell)
Hook for cloning the cell.
mxGraph.prototype.cellConnected = function(edge,
terminal,
source,
constraint)
Sets the new terminal for the given edge and resets the edge points if resetEdgesOnConnect is true.
mxGraph.prototype.cellEditor
Holds the mxCellEditor that is used as the in-place editing.
mxGraph.prototype.cellLabelChanged = function(cell,
value,
autoSize)
Sets the new label for a cell.
mxFastOrganicLayout.prototype.cellLocation
An array of locally stored co-ordinate positions for the vertices.
mxGraphModel.prototype.cellRemoved = function(cell)
Inner callback to update cells when a cell has been removed.
mxGraphSelectionModel.prototype.cellRemoved = function(cell)
Inner callback to remove the specified mxCell from the selection.
mxSession.prototype.cellRemoved = function(cell,
codec)
Adds removed cells to the codec object lookup for references to the removed cells after this point in time.
mxGraph.prototype.cellRenderer
Holds the mxCellRenderer for rendering the cells in the graph.
mxSpaceManager.prototype.cellResized = function(cell)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
Holds the array of mxCells currently in the clipboard.
mxGraphModel.prototype.cells
Maps from Ids to cells.
mxMorphing.prototype.cells
Optional array of cells to be animated.
Specifies the event name for cellsAdded.
Fires between begin- and endUpdate in cellsAdded.
Specifies the event name for cellsFolded.
Fires between begin- and endUpdate in cellsFolded.
Specifies the event name for cellsMoved.
Fires between begin- and endUpdate in cellsMoved.
Specifies the event name for cellsOrdered.
Fires between begin- and endUpdate in cellsOrdered.
Specifies the event name for cellsRemoved.
Fires between begin- and endUpdate in cellsRemoved.
Specifies the event name for cellsResized.
Fires between begin- and endUpdate in cellsResized.
Specifies the event name for cellsToggled.
mxGraph.prototype.cellsAdded = function(cells,
parent,
index,
source,
target,
absolute,
constrain)
Adds the specified cells to the given parent.
mxSwimlaneManager.prototype.cellsAdded = function(cells)
Called if any cells have been added.
mxGraph.prototype.cellsBendable
Specifies the return value for isCellsBendable.
mxGraph.prototype.cellsCloneable
Specifies the return value for isCellCloneable.
mxGraph.prototype.cellsDeletable
Specifies the return value for isCellDeletable.
mxGraph.prototype.cellsDisconnectable
Specifies the return value for isCellDisconntable.
mxGraph.prototype.cellsEditable
Specifies the return value for isCellEditable.
mxGraph.prototype.cellsFolded = function(cells,
collapse,
recurse,
checkFoldable)
Sets the collapsed state of the specified cells.
mxGraph.prototype.cellSizeUpdated = function(cell,
ignoreChildren)
Updates the size of the given cell in the model using getPreferredSizeForCell to get the new size.
mxGraph.prototype.cellsLocked
Specifies the return value for isCellLocked.
mxGraph.prototype.cellsMovable
Specifies the return value for isCellMovable.
mxGraph.prototype.cellsMoved = function(cells,
dx,
dy,
disconnect,
constrain)
Moves the specified cells by the given vector, disconnecting the cells using disconnectGraph is disconnect is true.
mxLayoutManager.prototype.cellsMoved = function(cells,
evt)
Called from the moveHandler.
mxGraph.prototype.cellsOrdered = function(cells,
back)
Moves the given cells to the front or back.
mxGraph.prototype.cellsRemoved = function(cells)
Removes the given cells from the model.
mxGraph.prototype.cellsResizable
Specifies the return value for isCellResizable.
mxGraph.prototype.cellsResized = function(cells,
bounds)
Sets the bounds of the given cells and fires a mxEvent.CELLS_RESIZED event.
mxSpaceManager.prototype.cellsResized = function(cells)
Called from moveCellsIntoParent to invoke the move hook in the automatic layout of each modified cell’s parent.
mxSwimlaneManager.prototype.cellsResized = function(cells)
Called if any cells have been resizes.
mxGraph.prototype.cellsSelectable
Specifies the return value for isCellSelectable.
mxGraph.prototype.cellsToggled = function(cells,
show)
Sets the visible state of the specified cells.
mxGraph.prototype.centerZoom
Specifies if the zoom operations should go into the center of the actual diagram rather than going from top, left.
Specifies the event name for change.
Fires when an undoable edit is dispatched.
Fires after the selection changes by executing an mxSelectionChange.
mxAutoSaveManager.prototype.changeHandler
Holds the function that handles graph model changes.
mxConnectionHandler.prototype.changeHandler
Holds the change event listener for later removal.
mxEdgeSegmentHandler.prototype.changePoints = function(edge,
points)
Changes the points of the given edge to reflect the current state of the handler.
mxEdgeHandler.prototype.changePoints = function(edge,
points)
Changes the control points of the given edge in the graph model.
mxUndoableEdit.prototype.changes
Array that contains the changes that make up this edit.
mxGraphSelectionModel.prototype.changeSelection = function(added,
removed)
Inner callback to add the specified mxCell to the selection.
mxEdgeSegmentHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Calls refresh after mxEdgeHandler.changeTerminalPoint.
mxEdgeHandler.prototype.changeTerminalPoint = function(edge,
point,
isSource)
Changes the terminal point of the given edge.
mxCompactTreeLayout.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxCoordinateAssignment.prototype.channelBuffer
The size of the vertical buffer in the center of inter-rank channels where edge control points should not be placed
mxMultiplicity.prototype.check = function(graph,
edge,
source,
target,
sourceOut,
targetIn)
Checks the multiplicity for the given arguments and returns the error for the given connection or null if the multiplicity does not apply.
mxMultiplicity.prototype.checkNeighbors = function(graph,
edge,
source,
target)
Checks if there are any valid neighbours in validNeighbors.
mxMultiplicity.prototype.checkTerminal = function(graph,
terminal,
edge)
Checks the given terminal cell and returns true if this rule applies.
mxMultiplicity.prototype.checkType = function(graph,
value,
type,
attr,
attrValue)
Checks the type of the given value.
mxGraphView.prototype.childMoved = function(parent,
child)
Invoked when a child state was moved as a result of late evaluation of its position.
mxCell.prototype.children
Holds the child cells.
mxCircleLayout.prototype.circle = function(vertices,
r,
left,
top)
Executes the circular layout for the specified array of vertices and the given radius.
mxDictionary.prototype.clear = function()
Clears the dictionary.
mxGraphModel.prototype.clear = function()
Sets a new root using createRoot.
mxGraphSelectionModel.prototype.clear = function()
Clears the selection and fires a change event if the selection was not empty.
mxGraphView.prototype.clear = function(cell,
force,
recurse)
Removes the state of the given cell and all descendants if the given cell is not the current root.
clear: function(obj)
Removes the object id from the given object.
mxUndoManager.prototype.clear = function()
Clears the command history.
Specifies the event name for clear.
Fires after clear was invoked.
mxGraph.prototype.clearCellOverlays = function(cell)
Removes all mxCellOverlays in the graph for the given cell and all its descendants.
mxGraph.prototype.clearSelection = function()
Clears the selection using mxGraphSelectionModel.clear.
clearSelection: function()
Clears the current selection in the page.
mxPanningHandler.prototype.clearSelectionOnBackground
Specifies if cells should be deselected if a popupmenu is displayed for the diagram background.
mxGraph.prototype.click = function(me)
Processes a singleclick on an optional cell and fires a click event.
Fires when the user clicks on the overlay.
Specifies the event name for click.
Fires in click after a click event.
clip: function()
Uses the current path for clipping.
clip: function()
Uses the current path for clipping.
mxCell.prototype.clone = function()
Returns a clone of the cell.
mxCellState.prototype.clone = function()
Returns a clone of this mxPoint.
mxLine.prototype.clone = function()
Overrides the clone method to add special fields.
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
clone: function(obj,
transients,
shallow)
Recursively clones the specified object ignoring all fieldnames in the given array of transient fields.
mxGraphModel.prototype.cloneCell = function(cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
mxGraphModel.prototype.cloneCellImpl = function(cell,
mapping,
includeChildren)
Inner helper method for cloning cells recursively.
mxGraph.prototype.cloneCells = function(cells,
allowInvalidEdges)
Returns the clones for the given cells.
mxGraphModel.prototype.cloneCells = function(cells,
includeChildren)
Returns an array of clones for the given array of mxCells.
mxEdgeHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraphHandler.prototype.cloneEnabled
Specifies if cloning by control-drag is enabled.
mxGraph.prototype.cloneInvalidEdges
Specifies if edges that are cloned should be validated and only inserted if they are valid.
mxEdgeHandler.prototype.clonePreviewState = function(point,
terminal)
Returns a clone of the current preview state for the given point and terminal.
mxObjectCodec.prototype.cloneTemplate = function()
Returns a new instance of the template for this codec.
mxCell.prototype.cloneValue = function()
Returns a clone of the cell’s user object.
mxPath.prototype.close = function()
Closes the path.
mxPrintPreview.prototype.close = function()
Closes the print preview window.
close: function()
Closes the current path.
close: function()
Closes the current path.
Specifies the event name for close.
mxWindow.prototype.closeImage
URL of the image to be used for the close icon in the titlebar.
Specifies the resource key for the label of the close button.
mxSession.prototype.codec
Reference to the mxCodec used to encoding and decoding changes.
Maps from constructor names to codecs.
mxCell.prototype.collapsed
Specifies whether the cell is collapsed.
mxGraph.prototype.collapsedImage
Specifies the mxImage to indicate a collapsed state.
mxGraphModel.prototype.collapsedStateForCellChanged = function(cell,
collapsed)
Inner callback to update the collapsed state of the given mxCell using mxCell.setCollapsed and return the previous collapsed state.
mxGraph.prototype.collapseExpandResource
Specifies the resource key for the tooltip on the collapse/expand icon.
mxGraph.prototype.collapseToPreferredSize
Specifies if the cell size should be changed to the preferred size when a cell is first collapsed.
MedianCellSorter.prototype.compare = function(a,
b)
Compares two MedianCellSorters.
compare: function(p1,
p2)
Compares the given cell paths and returns -1 if p1 is smaller, 0 if p1 is equal and 1 if p1 is greater than p2.
WeightedCellSorter.prototype.compare = function(a,
b)
Compares two WeightedCellSorters.
var compressed
Specifies if the output should be compressed by removing redundant calls.
mxStencil.prototype.computeAspect = function(state,
bounds,
direction)
Returns a rectangle that contains the offset in x and y and the horizontal and vertical scale in width and height used to draw this shape inside the given mxRectangle.
mxDefaultPopupMenu.prototype.config
XML node used as the description of new menu items.
mxEditor.prototype.configure = function (node)
Configures the editor using the specified node.
mxConnector.prototype.configureHtmlShape = function(node)
Overrides mxShape.configureHtmlShape to clear the border and background.
mxShape.prototype.configureHtmlShape = function(node)
Configures the specified HTML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureHtmlShape = function(node)
Overrides method to set the overflow style to visible.
mxCellRenderer.prototype.configureShape = function(state)
Configures the shape for the given cell state.
mxImageShape.prototype.configureSvgShape = function(node)
Extends method to set opacity on images.
mxShape.prototype.configureSvgShape = function(node)
Configures the specified SVG node by applying the current color, bounds, shadow, opacity etc.
mxArrow.prototype.configureTransparentBackground = function(node)
Overidden to remove transparent background.
mxImageShape.prototype.configureTransparentBackground = function(node)
Workaround for security warning in IE if this is used in the overlay pane of a diagram.
mxShape.prototype.configureTransparentBackground = function(node)
Hook to make the background of a shape transparent.
mxShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
mxStencilShape.prototype.configureVmlShape = function(node)
Configures the specified VML node by applying the current color, bounds, shadow, opacity etc.
confirm: function(message)
Displays the given message in a confirm dialog.
mxEdgeSegmentHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Calls refresh after mxEdgeHandler.connect.
mxConnectionHandler.prototype.connect = function(source,
target,
evt,
dropTarget)
Connects the given source and target using a new edge.
mxDefaultToolbar.prototype.connect = function(vertex,
evt,
source)
Handles a drop by connecting the given vertex to the given source cell.
mxEdgeHandler.prototype.connect = function(edge,
terminal,
isSource,
isClone,
me)
Changes the terminal or terminal point of the given edge in the graph model.
mxEditor.prototype.connect = function (urlInit,
urlPoll,
urlNotify,
onChange)
Creates and returns a session for the specified parameters, installing the onChange function as a change listener for the session.
Fires between begin- and endUpdate in connect.
Specifies the event name for connect.
Fires after the session has been started, that is, after the response to the initial request was received and the session goes into polling mode.
Specifies the event name for connectCell.
Fires between begin- and endUpdate in connectCell.
Defines the color to be used for the connect handle fill color.
mxCell.prototype.connectable
Specifies whether the cell is connectable.
mxGraph.prototype.connectableEdges
Specifies if edges are connectable.
mxGraph.prototype.connectCell = function(edge,
terminal,
source,
constraint)
Connects the specified end of the given edge to the given terminal using cellConnected and fires mxEvent.CONNECT_CELL while the transaction is in progress.
mxSession.prototype.connected
mxConnectionHandler.prototype.connectIconOffset
Holds the offset for connect icons during connection preview.
mxConnectionHandler.prototype.connectImage
mxImage that is used to trigger the creation of a new connection.
mxDefaultToolbar.prototype.connectOnDrop
Specifies if elements should be connected if new cells are dropped onto connectable elements.
mxGraphHandler.prototype.connectOnDrop
Specifies if drop events are interpreted as new connections if no other drop action is defined.
mxGraphHierarchyNode.prototype.connectsAsSource
Collection of hierarchy edges that have this node as a source
mxGraphHierarchyNode.prototype.connectsAsTarget
Collection of hierarchy edges that have this node as a target
Specifies the name of the console window.
mxGraph.prototype.constrainChild = function(cell)
Keeps the given cell inside the bounds returned by getCellContainmentArea for its parent, according to the rules defined by getOverlap and isConstrainChild.
mxGraph.prototype.constrainChildren
Specifies the return value for isConstrainChildren.
mxConnectionHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxEdgeHandler.prototype.constraintHandler
Holds the mxConstraintHandler used for drawing and highlighting constraints.
mxStencil.prototype.constraints
Holds an array of mxConnectionConstraints as defined in the shape.
consume: function(evt,
preventDefault,
stopPropagation)
Consumes the given event.
mxEventObject.prototype.consume = function()
Consumes the event.
mxMouseEvent.prototype.consume = function(preventDefault)
Sets consumed to true and invokes preventDefault on the native event if such a method is defined.
mxEditor.prototype.consumeCycleAttribute = function (cell)
Returns the next attribute in cycleAttributeValues or null, if not attribute should be used in the specified cell.
mxEventObject.prototype.consumed
Holds the consumed state.
mxMouseEvent.prototype.consumed
Holds the consumed state of this event.
mxPanningHandler.prototype.consumePanningTrigger = function(me)
Consumes the given mxMouseEvent if it was a panning trigger in mouseDown.
mxToolbar.prototype.container
Reference to the DOM nodes that contains the toolbar.
mxGraphModel.prototype.contains = function(cell)
Returns true if the model contains the given mxCell.
contains: function(bounds,
x,
y)
Returns true if the specified point (x, y) is contained in the given rectangle.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxWindow.prototype.content
Reference to the DOM node that represents the window content.
mxKeyHandler.prototype.controlKeys
Maps from keycodes to functions for pressed control keys.
mxKeyHandler.prototype.controlShiftKeys
Maps from keycodes to functions for pressed control and shift keys.
convert: function(url)
Converts the given URL to an absolute URL.
var converter
Holds the mxUrlConverter to convert image URLs.
var converter
Holds the mxUrlConverter to convert image URLs.
mxEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
mxElbowEdgeHandler.prototype.convertPoint = function(point,
gridEnabled)
Converts the given point in-place from screen to unscaled, untranslated graph coordinates and applies the grid.
convertPoint: function(container,
x,
y)
Converts the specified point (x, y) using the offset of the specified container and returns a new mxPoint with the result.
mxObjectCodec.prototype.convertValueFromXml = function(value)
Converts booleans and numeric values to the respective types.
mxGraph.prototype.convertValueToString = function(cell)
Returns the textual representation for the given cell.
mxObjectCodec.prototype.convertValueToXml = function(value)
Converts true to “1” and false to “0”.
mxConnectionHandler.prototype.convertWaypoint = function(point)
Converts the given point from screen coordinates to model coordinates.
copy: function(graph,
cells)
Copies the given array of mxCells from the specified graph to cells.Returns the original array of cells that has been cloned.
copy: function(content)
Copies the specified content to the local clipboard.
mxCellStatePreview.prototype.count
Contains the number of entries in the map.
Current counter for objects.
mxMultiplicity.prototype.countError
Holds the localized error message to be displayed if the number of connections for which the rule applies is smaller than min or greater than max.
create: function(cell)
Creates the cell path for the given cell.
mxCylinder.prototype.create = function(container)
Overrides the method to make sure the stroke is never null.
mxGraphView.prototype.createHtml = function()
Creates the DOM nodes for the HTML display.
mxImageShape.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxPolyline.prototype.create = function()
Override to create HTML regardless of gradient and rounded property.
mxShape.prototype.create = function(container)
Creates and returns the DOM node(s) for the shape in the given container.
mxText.prototype.create = function(container)
Override to create HTML regardless of gradient and rounded property.
mxXmlRequest.prototype.create = function()
Creates and returns the inner request object.
mxGraphView.prototype.createBackgroundPageShape = function(bounds)
Creates and returns the shape used as the background page.
mxEdgeSegmentHandler.prototype.createBends = function()
Adds custom bends for the center of each segment.
mxEdgeHandler.prototype.createBends = function()
Creates and returns the bends used for modifying the edge.
mxElbowEdgeHandler.prototype.createBends = function()
Overrides mxEdgeHandler.createBends to create custom bends.
mxShape.prototype.createBoundingBox = function()
Returns a new rectangle that represents the bounding box of the bare shape with no shadows or strokewidths.
Helper method to create an mxRectangle around the given centerpoint with a width and height of 2*s or 6, if no s is given.
mxGraph.prototype.createCellEditor = function()
Creates a new mxCellEditor to be used in this graph.
mxCellRenderer.prototype.createCellOverlays = function(state)
Creates the actual shape for showing the overlay for the given cell state.
mxGraph.prototype.createCellRenderer = function()
Creates a new mxCellRenderer to be used in this graph.
mxDefaultPopupMenu.prototype.createConditions = function(editor,
cell,
evt)
Evaluates the default conditions for the given context.
mxCellRenderer.prototype.createControl = function(state)
Creates the control for the given cell state.
mxConnector.prototype.createDashPattern = function(factor)
Creates a dash pattern for the given factor.
mxStylesheet.prototype.createDefaultEdgeStyle = function()
Creates and returns the default edge style.
mxStylesheet.prototype.createDefaultVertexStyle = function()
Creates and returns the default vertex style.
mxEditor.prototype.createDiagramLayout = function ()
Creates the layout instance used to layout the swimlanes in the diagram.
mxDragSource.prototype.createDragElement = function(evt)
Creates and returns a clone of the dragElementPrototype or the element if the former is not defined.
mxConnectionHandler.prototype.createEdge = function(value,
source,
target,
style)
Creates and returns a new edge using factoryMethod if one exists.
mxEditor.prototype.createEdge = function (source,
target)
Uses defaultEdge as the prototype for creating new edges in the connection handler of the graph.
mxGraph.prototype.createEdge = function(parent,
id,
value,
source,
target,
style)
Hook method that creates the new edge for insertEdge.
mxConnectionHandler.prototype.createEdgeState = function(me)
Hook to return an mxCellState which may be used during the preview.
mxText.prototype.createForeignObject = function()
Creates and returns the foreignObject node to represent this shape.
mxEditor.prototype.createGraph = function ()
Creates the graph for the editor.
mxGraph.prototype.createGraphView = function()
Creates a new mxGraphView to be used in this graph.
mxEditor.prototype.createGroup = function ()
Creates and returns a clone of defaultGroup to be used as a new group cell in group.
mxGraph.prototype.createGroupCell = function(cells)
Hook for creating the group cell to hold the given array of mxCells if no group cell was given to the group function.
mxGuide.prototype.createGuideShape = function(horizontal)
Returns the mxShape to be used for painting the respective guide.
mxGraph.prototype.createHandler = function(state)
Creates a new handler for the given cell state.
mxGraph.prototype.createHandlers = function(container)
Creates the tooltip-, panning-, connection- and graph-handler (in this order).
mxEdgeHandler.prototype.createHandleShape = function(index)
Creates the shape used to display the given bend.
mxLabel.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRectangleShape.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxRhombus.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxShape.prototype.createHtml = function()
Creates and returns the HTML DOM node(s) to represent this shape.
mxSwimlane.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxText.prototype.createHtml = function()
Creates and returns the HTML node to represent this shape.
mxGraphView.prototype.createHtmlPane = function(width,
height)
Creates and returns a drawing pane in HTML (DIV).
mxText.prototype.createHtmlTable = function()
Creates and returns a HTML table with a table body and a single row with a single cell.
mxConnectionHandler.prototype.createIcons = function(state)
Creates the array mxImageShapes that represent the connect icons for the given mxCellState.
mxGraphModel.prototype.createId = function(cell)
Hook method to create an Id for the specified cell.
mxGraphModel.prototype.createIds
Specifies if the model should automatically create Ids for new cells.
createImage: function(src)
Creates and returns an image (IMG node) or VML image (v:image) in IE6 in quirs mode.
mxGraphHierarchyModel.prototype.createInternalCells = function(layout,
vertices,
internalVertices)
Creates all edges in the internal model
mxCellRenderer.prototype.createLabel = function(state,
value)
Creates the label for the given cell state.
mxEditor.prototype.createLayoutManager = function (graph)
Creates a layout manager for the swimlane and diagram layouts, that is, the locally defined inter- and intraswimlane layouts.
mxCompactTreeLayout.prototype.createLine = function(dx,
dy,
next)
mxConnectionHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxEdgeHandler.prototype.createMarker = function()
Creates and returns the mxCellMarker used in marker.
mxDefaultPopupMenu.prototype.createMenu = function(editor,
menu,
cell,
evt)
This function is called from mxEditor to add items to the given menu based on config.
mxCompactTreeLayout.prototype.createNode = function(cell)
mxPrintPreview.prototype.createPageSelector = function(vpages,
hpages)
Creates the page selector table.
mxGraph.prototype.createPanningManager = function()
Creates and returns an mxPanningManager.
mxShape.prototype.createPath = function(arg)
Creates an mxPath for the specified format and origin.
mxShape.prototype.createPoints = function(moveCmd,
lineCmd,
curveCmd,
isRelative)
Creates a path expression using the specified commands for this.points.
mxEditor.prototype.createPopupMenu = function (menu,
cell,
evt)
Uses popupHandler to create the menu in the graph’s panning handler.
mxDragSource.prototype.createPreviewElement = function(graph)
Creates and returns an element which can be used as a preview in the given graph.
mxGraphHandler.prototype.createPreviewShape = function(bounds)
Creates the shape used to draw the preview for the given bounds.
mxEditor.prototype.createProperties = function (cell)
Creates and returns the DOM node that represents the contents of the properties dialog for the given cell.
mxGraphModel.prototype.createRoot = function()
Creates a new root cell with a default layer (child 0).
mxGraph.prototype.createSelectionModel = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxEdgeHandler.prototype.createSelectionShape = function(points)
Creates the shape used to draw the selection border.
mxVertexHandler.prototype.createSelectionShape = function(bounds)
Creates the shape used to draw the selection border.
mxEditor.prototype.createSession = function ()
Creates the built-in session using urlInit, urlPoll and urlNotify.
mxCellHighlight.prototype.createShape = function(state)
Creates and returns the highlight shape for the given state.
mxCellRenderer.prototype.createShape = function(state)
Creates the shape for the given cell state.
mxConnectionHandler.prototype.createShape = function()
Creates the preview shape for new connections.
mxImageExport.prototype.createShape = function(state,
canvas)
Creates a shape wrapper for the custom shape in the given cell state and links its output to the given canvas.
mxRubberband.prototype.createShape = function()
Creates the rubberband selection shape.
mxOutline.prototype.createSizer = function()
Creates the shape used as the sizer.
mxVertexHandler.prototype.createSizer = function(cursor,
index,
size,
fillColor)
Creates a sizer handle for the specified cursor and index and returns the new mxRectangleShape that represents the handle.
mxVertexHandler.prototype.createSizerShape = function(bounds,
index,
fillColor)
Creates the shape used for the sizer handle for the specified bounds and index.
mxGraphView.prototype.createState = function(cell)
Creates and returns an mxCellState for the given cell and initializes it using mxCellRenderer.initialize.
mxGraph.prototype.createStylesheet = function()
Creates a new mxGraphSelectionModel to be used in this graph.
mxPopupMenu.prototype.createSubmenu = function(parent)
Creates the nodes required to add submenu items inside the given parent item.
mxActor.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxArrow.prototype.createSvg = function()
Extends mxActor.createSvg to ignore fill if enableFill is false and create an event handling shape if this.addPipe is true.
mxConnector.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxCylinder.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxDoubleEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxEllipse.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxLabel.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxLine.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxPolyline.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxRectangleShape.prototype.createSvg = function()
Creates and returns the SVG node to represent this shape.
mxRhombus.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxStencilShape.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxSwimlane.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxText.prototype.createSvg = function()
Creates and returns the SVG node(s) to represent this shape.
mxShape.prototype.createSvgGradient = function(id,
start,
end,
node)
Creates a gradient object for SVG using the specified startcolor, endcolor and opacity.
mxShape.prototype.createSvgGroup = function(shape)
Creates a SVG group element and adds the given shape as a child of the element.
mxShape.prototype.createSvgPipe = function(id,
start,
end,
node)
Creates an invisible path which is used to increase the hit detection for edges in SVG.
mxShape.prototype.createSvgShadow = function(node)
Creates a clone of the given node and configures the node’s color to use mxConstants.SHADOWCOLOR.
Updates the path for the given SVG node.
mxText.prototype.createSvgSpan = function(text)
Creats an SVG tspan node for the given text.
mxEditor.prototype.createSwimlaneLayout = function ()
Creates the layout instance used to layout the children of each swimlane.
mxEditor.prototype.createSwimlaneManager = function (graph)
Sets the graph’s container using mxGraph.init.
mxConnectionHandler.prototype.createTarget
Specifies if createTargetVertex should be called if no target was under the mouse for the new connection.
mxConnectionHandler.prototype.createTargetVertex = function(evt,
source)
Hook method for creating new vertices on the fly if no target was under the mouse.
mxEditor.prototype.createTasks = function (div)
Updates the contents of the given DOM node to display the tasks associated with the current editor state.
mxEditor.prototype.createToolbar = function ()
Creates the toolbar with no container.
mxGraphModel.prototype.createUndoableEdit = function()
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event through the mxUndoableEdit’s source.
mxSession.prototype.createUndoableEdit = function(changes)
Creates a new mxUndoableEdit that implements the notify function to fire a change and notify event via the model.
mxGraph.prototype.createVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Hook method that creates the new vertex for insertVertex.
mxElbowEdgeHandler.prototype.createVirtualBend = function()
Creates a virtual bend that supports double clicking and calls mxGraph.flipEdge.
mxActor.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxArrow.prototype.createVml = function()
Extends mxShape.createVml to ignore fill if enableFill is false.
mxConnector.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxCylinder.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxDoubleEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxEllipse.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLabel.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxLine.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRectangleShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxRhombus.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxStencilShape.prototype.createVml = function()
Creates and returns the VML node to represent this shape.
mxSwimlane.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxText.prototype.createVml = function()
Creates and returns the VML node(s) to represent this shape.
mxLabel.prototype.createVmlImage = function(src,
opacity)
Creates an image node for the given image src and opacity to be used in VML.
mxGraphView.prototype.createVmlPane = function(width,
height)
Creates a drawing pane in VML (group).
mxShape.prototype.createVmlShadow = function(node)
Creates the VML shadow node.
createXmlDocument: function()
Returns a new, empty XML document.
mxEdgeHandler.prototype.crisp
Specifies if the edge handles should be rendered in crisp mode.
mxGraphHandler.prototype.crisp
Specifies if the move preview should be rendered in crisp mode if applicable.
mxGuide.prototype.crisp
Specifies if theguide should be rendered in crisp mode if applicable.
mxImageShape.prototype.crisp
Disables crisp rendering via attributes.
mxShape.prototype.crisp
Special attribute for SVG rendering to set the shape-rendering attribute to crispEdges in the output.
mxVertexHandler.prototype.crisp
Specifies if the selection bounds and handles should be rendered in crisp mode.
mxHierarchicalLayout.prototype.crossingStage = function(parent)
Executes the crossing stage using mxMedianHybridCrossingReduction.
mxMedianHybridCrossingReduction.prototype.currentBestCrossings
The total number of crossings found in the best configuration so far
mxCellMarker.prototype.currentColor
Holds the current marker color.
mxDragSource.prototype.currentDropTarget
Holds the current drop target under the mouse.
mxGraphHandler.prototype.currentDx
Stores the x-coordinate of the current mouse move.
mxGraphHandler.prototype.currentDy
Stores the y-coordinate of the current mouse move.
mxGraphModel.prototype.currentEdit
Holds the changes for the current transaction.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxDragSource.prototype.currentGraph
Reference to the mxGraph that is the current drop target.
mxDragSource.prototype.currentGuide
Holds an mxGuide for the currentGraph if dragPreview is not null.
mxDragSource.prototype.currentPoint
Holds the current drop location.
mxGraphView.prototype.currentRoot
mxCell that acts as the root of the displayed cell hierarchy.
mxRubberband.prototype.currentX
Holds the value of the x argument in the last call to update.
mxCoordinateAssignment.prototype.currentXDelta
The sum of x-displacements for the current iteration
mxRubberband.prototype.currentY
Holds the value of the y argument in the last call to update.
mxCellOverlay.prototype.cursor
Holds the cursor for the overlay.
Defines the cursor for a movable bend.
Defines the cursor for a connectable state.
Defines the cursor for a movable label.
Defines the cursor for a movable edge.
Defines the cursor for a movable vertex.
mxPath.prototype.curveTo = function(x1,
y1,
x2,
y2,
x,
y)
Draws a cubic Bézier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
curveTo: function(x1,
y1,
x2,
y2,
x3,
y3)
Adds a bezier curve to the current path.
cut: function(graph,
cells)
Cuts the given array of mxCells from the specified graph.
mxEditor.prototype.cycleAttribute = function (cell)
Uses the returned value from consumeCycleAttribute as the value for the cycleAttributeName key in the given cell’s style.
mxEditor.prototype.cycleAttributeIndex
Index of the last consumed attribute index.
mxEditor.prototype.cycleAttributeName
Name of the attribute to be assigned a cycleAttributeValues when inserting new swimlanes.
mxEditor.prototype.cycleAttributeValues
Specifies the attribute values to be cycled when inserting new swimlanes.
mxHierarchicalLayout.prototype.cycleStage = function(parent)
Executes the cycle stage using mxMinimumCycleRemover.
diff --git a/docs/js-api/index/General4.html b/docs/js-api/index/General4.html index 449b4a212..9baf07fe5 100644 --- a/docs/js-api/index/General4.html +++ b/docs/js-api/index/General4.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
D
 damper, mxPanningManager
 dblClick, mxGraph
 dblClickAction, mxEditor
 debug
 DEBUG, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChanges, mxSession
 decodeChild
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 decodeRoot, mxModelCodec
 decodeTemplates, mxEditorCodec
 DEFAULT_FONTFAMILY, mxConstants
 DEFAULT_FONTSIZE, mxConstants
 DEFAULT_HOTSPOT, mxConstants
 DEFAULT_IMAGESIZE, mxConstants
 DEFAULT_INVALID_COLOR, mxConstants
 DEFAULT_MARKERSIZE, mxConstants
 DEFAULT_STARTSIZE, mxConstants
 DEFAULT_VALID_COLOR, mxConstants
 defaultEdge, mxEditor
 defaultEdgeShape, mxCellRenderer
 defaultEdgeStyle, mxEditor
 defaultGroup, mxEditor
 defaultLanguage, mxClient
 defaultLoopStyle, mxGraph
 defaultOpacity, mxRubberband
 defaultOverlap
 defaultParent, mxGraph
 defaultShapes, mxCellRenderer
 defaultVertexShape, mxCellRenderer
 delay
 deltas, mxCellStatePreview
 desc, mxStencil
 destroy
 DESTROY, mxEvent
 destroyIcons, mxConnectionHandler
 destroyOnClose, mxWindow
 destroyShapes, mxGraphHandler
 deterministic
 dfs
 dfsCount, mxGraphHierarchyModel
 dialect
 DIALECT_MIXEDHTML, mxConstants
 DIALECT_PREFERHTML, mxConstants
 DIALECT_STRICTHTML, mxConstants
 DIALECT_SVG, mxConstants
 DIALECT_VML, mxConstants
 die, mxUndoableEdit
 DIRECTION_EAST, mxConstants
 DIRECTION_MASK_ALL, mxConstants
 DIRECTION_MASK_EAST, mxConstants
 DIRECTION_MASK_NONE, mxConstants
 DIRECTION_MASK_NORTH, mxConstants
 DIRECTION_MASK_SOUTH, mxConstants
 DIRECTION_MASK_WEST, mxConstants
 DIRECTION_NORTH, mxConstants
 DIRECTION_SOUTH, mxConstants
 DIRECTION_WEST, mxConstants
 disableContextMenu
 disableEdgeStyle
 disconnect, mxChildChange
 DISCONNECT
 disconnectGraph, mxGraph
 disconnectOnMove, mxGraph
 dispose, mxClient
 dispX, mxFastOrganicLayout
 dispY, mxFastOrganicLayout
 div, mxRubberband
 document, mxCodec
 DONE, mxEvent
 doneResource
 DOUBLE_CLICK
 doubleClickOrientationResource, mxElbowEdgeHandler
 doubleTapEnabled, mxGraph
 doubleTapTimeout, mxGraph
 doubleTapTolerance, mxGraph
 DOWN, mxEvent
 dragElement, mxDragSource
 dragEnter, mxDragSource
 dragExit, mxDragSource
 dragOffset, mxDragSource
 dragOver, mxDragSource
 drawGlass, mxImageExport
 drawHighlight, mxCellHighlight
 drawImage, mxImageExport
 drawLabel, mxImageExport
 drawLabelBackground, mxImageExport
 drawMarker, mxImageExport
 drawNode, mxStencil
 drawOverlays, mxImageExport
 drawPreview
 drawShape
 drawState, mxImageExport
 Drilldown, mxGraph
 drillHandler, mxConnectionHandler
 drop
 DROP_TARGET_COLOR, mxConstants
 dropEnabled, mxGraph
 dropHandler, mxDragSource
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
D
 damper, mxPanningManager
 dblClick, mxGraph
 dblClickAction, mxEditor
 debug
 DEBUG, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChanges, mxSession
 decodeChild
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 decodeRoot, mxModelCodec
 decodeTemplates, mxEditorCodec
 DEFAULT_FONTFAMILY, mxConstants
 DEFAULT_FONTSIZE, mxConstants
 DEFAULT_HOTSPOT, mxConstants
 DEFAULT_IMAGESIZE, mxConstants
 DEFAULT_INVALID_COLOR, mxConstants
 DEFAULT_MARKERSIZE, mxConstants
 DEFAULT_STARTSIZE, mxConstants
 DEFAULT_VALID_COLOR, mxConstants
 defaultEdge, mxEditor
 defaultEdgeShape, mxCellRenderer
 defaultEdgeStyle, mxEditor
 defaultGroup, mxEditor
 defaultLanguage, mxClient
 defaultLoopStyle, mxGraph
 defaultOpacity, mxRubberband
 defaultOverlap
 defaultParent, mxGraph
 defaultShapes, mxCellRenderer
 defaultVertexShape, mxCellRenderer
 delay
 deltas, mxCellStatePreview
 desc, mxStencil
 destroy
 DESTROY, mxEvent
 destroyIcons, mxConnectionHandler
 destroyOnClose, mxWindow
 destroyShapes, mxGraphHandler
 deterministic
 dfs
 dfsCount, mxGraphHierarchyModel
 dialect
 DIALECT_MIXEDHTML, mxConstants
 DIALECT_PREFERHTML, mxConstants
 DIALECT_STRICTHTML, mxConstants
 DIALECT_SVG, mxConstants
 DIALECT_VML, mxConstants
 die, mxUndoableEdit
 DIRECTION_EAST, mxConstants
 DIRECTION_MASK_ALL, mxConstants
 DIRECTION_MASK_EAST, mxConstants
 DIRECTION_MASK_NONE, mxConstants
 DIRECTION_MASK_NORTH, mxConstants
 DIRECTION_MASK_SOUTH, mxConstants
 DIRECTION_MASK_WEST, mxConstants
 DIRECTION_NORTH, mxConstants
 DIRECTION_SOUTH, mxConstants
 DIRECTION_WEST, mxConstants
 disableContextMenu
 disableEdgeStyle
 disconnect, mxChildChange
 DISCONNECT
 disconnectGraph, mxGraph
 disconnectOnMove, mxGraph
 dispose, mxClient
 dispX, mxFastOrganicLayout
 dispY, mxFastOrganicLayout
 div, mxRubberband
 document, mxCodec
 DONE, mxEvent
 doneResource
 doResizeContainer, mxGraph
 DOUBLE_CLICK
 doubleClickOrientationResource, mxElbowEdgeHandler
 doubleTapEnabled, mxGraph
 doubleTapTimeout, mxGraph
 doubleTapTolerance, mxGraph
 DOWN, mxEvent
 dragElement, mxDragSource
 dragEnter, mxDragSource
 dragExit, mxDragSource
 dragOffset, mxDragSource
 dragOver, mxDragSource
 drawGlass, mxImageExport
 drawHighlight, mxCellHighlight
 drawImage, mxImageExport
 drawLabel, mxImageExport
 drawLabelBackground, mxImageExport
 drawMarker, mxImageExport
 drawNode, mxStencil
 drawOverlays, mxImageExport
 drawPreview
 drawShape
 drawState, mxImageExport
 Drilldown, mxGraph
 drillHandler, mxConnectionHandler
 drop
 DROP_TARGET_COLOR, mxConstants
 dropEnabled, mxGraph
 dropHandler, mxDragSource
-
mxPanningManager.prototype.damper
Damper value for the panning.
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
mxEditor.prototype.dblClickAction
Specifies the name of the action to be executed when a cell is double clicked.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxSession.prototype.debug
Specifies if the session should run in debug mode.
Specifies if the output for debug should be visible in the console.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
Defines the default family for all fonts in points.
Defines the default size for all fonts in points.
Defines the portion of the cell which is to be used as a connectable region.
Defines the default width and height for images used in the label shape.
Specifies the default invalid color.
Defines the default size for all markers.
Defines the default start size for swimlanes.
Specifies the default valid colorr.
mxEditor.prototype.defaultEdge
Prototype edge cell that is used for creating new edges.
mxCellRenderer.prototype.defaultEdgeShape
Defines the default shape for edges.
mxEditor.prototype.defaultEdgeStyle
Specifies the edge style to be returned in getEdgeStyle.
mxEditor.prototype.defaultGroup
Prototype group cell that is used for creating new groups.
Defines the default language which is used in the common resource files.
mxGraph.prototype.defaultLoopStyle
mxEdgeStyle to be used for loops.
mxRubberband.prototype.defaultOpacity
Specifies the default opacity to be used for the rubberband div.
mxCellOverlay.prototype.defaultOverlap
Defines the overlapping for the overlay, that is, the proportional distance from the origin to the point defined by the alignment.
mxGraph.prototype.defaultOverlap
Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.
mxGraph.prototype.defaultParent
Specifies the default parent to be used to insert new cells.
mxCellRenderer.prototype.defaultShapes
Static array that contains the globally registered shapes which are known to all instances of this class.
mxCellRenderer.prototype.defaultVertexShape
Defines the default shape for vertices.
mxAnimation.prototype.delay
Specifies the delay between the animation steps.
mxPanningManager.prototype.delay
Delay in milliseconds for the panning.
mxTooltipHandler.prototype.delay
Delay to show the tooltip in milliseconds.
mxCellStatePreview.prototype.deltas
Reference to the enclosing mxGraph.
mxStencil.prototype.desc
Holds the XML node with the stencil description.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
Specifies the event name for destroy.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxWindow.prototype.destroyOnClose
Specifies if the window should be destroyed when it is closed.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxGraphHierarchyModel.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
mxHierarchicalLayout.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxGraphHierarchyModel.prototype.dfsCount
Count of the number of times the ancestor dfs has been used.
mxGraph.prototype.dialect
Dialect to be used for drawing the graph.
mxShape.prototype.dialect
Holds the dialect in which the shape is to be painted.
Defines the mixed HTML display dialect name.
Defines the preferred HTML display dialect name.
Defines the strict HTML display dialect.
Defines the SVG display dialect name.
Defines the VML display dialect name.
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
Constant for direction east.
Bitwise mask for all directions.
Bitwise mask for east direction.
Constant for no direction.
Bitwise mask for north direction.
Bitwise mask for south direction.
Bitwise mask for west direction.
Constant for direction north.
Constant for direction south.
Constant for direction west.
mxEditor.prototype.disableContextMenu
Specifies if the context menu should be disabled in the graph container.
disableContextMenu: function()
Disables the context menu for the given element.
mxCircleLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxFastOrganicLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxHierarchicalLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
Specifies the event name for disconnect.
Fires after the session was stopped in stop.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
mxGraph.prototype.disconnectOnMove
Specifies if edges should be disconnected from their terminals when they are moved.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxFastOrganicLayout.prototype.dispX
An array of locally stored X co-ordinate displacements for the vertices.
mxFastOrganicLayout.prototype.dispY
An array of locally stored Y co-ordinate displacements for the vertices.
mxRubberband.prototype.div
Holds the DIV element which is currently visible.
mxCodec.prototype.document
The owner document of the codec.
Specifies the event name for done.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
DOUBLE_CLICK: 'doubleClick' }
Specifies the event name for doubleClick.
Fires in dblClick after a double click.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
mxGraph.prototype.doubleTapEnabled
Specifies if double taps on touch-based devices should be handled.
mxGraph.prototype.doubleTapTimeout
Specifies the timeout for double taps.
mxGraph.prototype.doubleTapTolerance
Specifies the tolerance for double taps.
Specifies the event name for down.
mxDragSource.prototype.dragElement
Holds the DOM node that is used to represent the drag preview.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOffset
mxPoint that specifies the offset of the dragElement.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function(state)
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxConnectionHandler.prototype.drillHandler
Holds the drill event listener for later removal.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
Defines the color to be used for the highlighting target parent cells (for drag and drop).
mxGraph.prototype.dropEnabled
Specifies the return value for isDropEnabled.
mxDragSource.prototype.dropHandler
Holds the DOM node that is used to represent the drag preview.
+
mxPanningManager.prototype.damper
Damper value for the panning.
mxGraph.prototype.dblClick = function(evt,
cell)
Processes a doubleclick on an optional cell and fires a dblclick event.
mxEditor.prototype.dblClickAction
Specifies the name of the action to be executed when a cell is double clicked.
debug: function()
Adds all arguments to the console if DEBUG is enabled.
mxSession.prototype.debug
Specifies if the session should run in debug mode.
Specifies if the output for debug should be visible in the console.
mxCodec.prototype.decode = function(node,
into)
Decodes the given XML node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
codec.decode = function(dec,
node,
into)
Uses the given node as the config for mxDefaultPopupMenu.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decode = function(dec,
node,
into)
Parses the given node into the object or returns a new object representing the given node.
codec.decode = function(dec,
node,
into)
Reads a sequence of the following child nodes and attributes:
mxObjectCodec.prototype.decodeAttribute = function(dec,
attr,
obj)
Reads the given attribute into the specified object.
mxObjectCodec.prototype.decodeAttributes = function(dec,
node,
obj)
Decodes all attributes of the given node using decodeAttribute.
mxCodec.prototype.decodeCell = function(node,
restoreStructures)
Decodes cells that have been encoded using inversion, ie.
mxSession.prototype.decodeChanges = function(node)
Decodes and executes the changes represented by the children in the given node.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
codec.decodeChild = function(dec,
child,
obj)
Overrides decode child to handle special child nodes.
mxObjectCodec.prototype.decodeChild = function(dec,
child,
obj)
Reads the specified child into the given object.
mxObjectCodec.prototype.decodeChildren = function(dec,
node,
obj)
Decodec all children of the given node using decodeChild.
mxObjectCodec.prototype.decodeNode = function(dec,
node,
obj)
Calls decodeAttributes and decodeChildren for the given node.
codec.decodeRoot = function(dec,
root,
model)
Reads the cells into the graph model.
Decodes the cells from the given node as templates.
Defines the default family for all fonts in points.
Defines the default size for all fonts in points.
Defines the portion of the cell which is to be used as a connectable region.
Defines the default width and height for images used in the label shape.
Specifies the default invalid color.
Defines the default size for all markers.
Defines the default start size for swimlanes.
Specifies the default valid colorr.
mxEditor.prototype.defaultEdge
Prototype edge cell that is used for creating new edges.
mxCellRenderer.prototype.defaultEdgeShape
Defines the default shape for edges.
mxEditor.prototype.defaultEdgeStyle
Specifies the edge style to be returned in getEdgeStyle.
mxEditor.prototype.defaultGroup
Prototype group cell that is used for creating new groups.
Defines the default language which is used in the common resource files.
mxGraph.prototype.defaultLoopStyle
mxEdgeStyle to be used for loops.
mxRubberband.prototype.defaultOpacity
Specifies the default opacity to be used for the rubberband div.
mxCellOverlay.prototype.defaultOverlap
Defines the overlapping for the overlay, that is, the proportional distance from the origin to the point defined by the alignment.
mxGraph.prototype.defaultOverlap
Value returned by getOverlap if isAllowOverlapParent returns true for the given cell.
mxGraph.prototype.defaultParent
Specifies the default parent to be used to insert new cells.
mxCellRenderer.prototype.defaultShapes
Static array that contains the globally registered shapes which are known to all instances of this class.
mxCellRenderer.prototype.defaultVertexShape
Defines the default shape for vertices.
mxAnimation.prototype.delay
Specifies the delay between the animation steps.
mxPanningManager.prototype.delay
Delay in milliseconds for the panning.
mxTooltipHandler.prototype.delay
Delay to show the tooltip in milliseconds.
mxCellStatePreview.prototype.deltas
Reference to the enclosing mxGraph.
mxStencil.prototype.desc
Holds the XML node with the stencil description.
mxAutoSaveManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxCellEditor.prototype.destroy = function ()
Destroys the editor and removes all associated resources.
mxCellHighlight.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellMarker.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxCellRenderer.prototype.destroy = function(state)
Destroys the shapes associated with the given cell state.
mxCellState.prototype.destroy = function ()
Destroys the state and all associated resources.
mxCellTracker.prototype.destroy = function()
Destroys the object and all its resources and DOM nodes.
mxConnectionHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxConstraintHandler.prototype.destroy = function()
Destroy this handler.
mxDefaultKeyHandler.prototype.destroy = function ()
Destroys the handler associated with this object.
mxDefaultToolbar.prototype.destroy = function ()
Destroys the toolbar associated with this object and removes all installed listeners.
mxEdgeHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxEditor.prototype.destroy = function ()
Removes the editor and all its associated resources.
mxGraph.prototype.destroy = function()
Destroys the graph and all its resources.
mxGraphHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxGraphView.prototype.destroy = function()
Destroys the view and all its resources.
mxGuide.prototype.destroy = function()
Destroys all resources that this object uses.
mxKeyHandler.prototype.destroy = function()
Destroys the handler and all its references into the DOM.
mxLayoutManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxOutline.prototype.destroy = function()
Destroy this outline and removes all listeners from source.
mxPanningHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxPopupMenu.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxRubberband.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxSelectionCellsHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxShape.prototype.destroy = function()
Destroys the shape by removing it from the DOM and releasing the DOM node associated with the shape using mxEvent.release.
mxSpaceManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxSwimlaneManager.prototype.destroy = function()
Removes all handlers from the graph and deletes the reference to it.
mxTemporaryCellStates.prototype.destroy = function()
Returns the top, left corner as a new mxPoint.
mxText.prototype.destroy = function()
Extends destroy to remove any allocated SVG clips.
mxToolbar.prototype.destroy = function ()
Removes the toolbar and all its associated resources.
mxTooltipHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxVertexHandler.prototype.destroy = function()
Destroys the handler and all its resources and DOM nodes.
mxWindow.prototype.destroy = function()
Destroys the window and removes all associated resources.
Specifies the event name for destroy.
mxConnectionHandler.prototype.destroyIcons = function(icons)
Destroys the given array of mxImageShapes.
mxWindow.prototype.destroyOnClose
Specifies if the window should be destroyed when it is closed.
mxGraphHandler.prototype.destroyShapes = function()
Destroy the preview and highlight shapes.
mxGraphHierarchyModel.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
mxHierarchicalLayout.prototype.deterministic
Whether or not cells are ordered according to the order in the graph model.
mxCompactTreeLayout.prototype.dfs = function(cell,
parent,
visited)
Does a depth first search starting at the specified cell.
mxGraphHierarchyModel.prototype.dfs = function(parent,
root,
connectingEdge,
visitor,
seen,
layer)
Performs a depth first search on the internal hierarchy model
mxGraphHierarchyModel.prototype.dfsCount
Count of the number of times the ancestor dfs has been used.
mxGraph.prototype.dialect
Dialect to be used for drawing the graph.
mxShape.prototype.dialect
Holds the dialect in which the shape is to be painted.
Defines the mixed HTML display dialect name.
Defines the preferred HTML display dialect name.
Defines the strict HTML display dialect.
Defines the SVG display dialect name.
Defines the VML display dialect name.
mxUndoableEdit.prototype.die = function()
Hook to free resources after the edit has been removed from the command history.
Constant for direction east.
Bitwise mask for all directions.
Bitwise mask for east direction.
Constant for no direction.
Bitwise mask for north direction.
Bitwise mask for south direction.
Bitwise mask for west direction.
Constant for direction north.
Constant for direction south.
Constant for direction west.
mxEditor.prototype.disableContextMenu
Specifies if the context menu should be disabled in the graph container.
disableContextMenu: function()
Disables the context menu for the given element.
mxCircleLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxFastOrganicLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
mxHierarchicalLayout.prototype.disableEdgeStyle
Specifies if the STYLE_NOEDGESTYLE flag should be set on edges that are modified by the result.
Disconnects the given cell recursively from its terminals and stores the previous terminal in the cell’s terminals.
Specifies the event name for disconnect.
Fires after the session was stopped in stop.
mxGraph.prototype.disconnectGraph = function(cells)
Disconnects the given edges from the terminals which are not in the given array.
mxGraph.prototype.disconnectOnMove
Specifies if edges should be disconnected from their terminals when they are moved.
dispose: function()
Frees up memory in IE by resolving cyclic dependencies between the DOM and the JavaScript objects.
mxFastOrganicLayout.prototype.dispX
An array of locally stored X co-ordinate displacements for the vertices.
mxFastOrganicLayout.prototype.dispY
An array of locally stored Y co-ordinate displacements for the vertices.
mxRubberband.prototype.div
Holds the DIV element which is currently visible.
mxCodec.prototype.document
The owner document of the codec.
Specifies the event name for done.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraph.prototype.doResizeContainer = function(width,
height)
Resizes the container for the given graph width and height.
DOUBLE_CLICK: 'doubleClick' }
Specifies the event name for doubleClick.
Fires in dblClick after a double click.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
mxGraph.prototype.doubleTapEnabled
Specifies if double taps on touch-based devices should be handled.
mxGraph.prototype.doubleTapTimeout
Specifies the timeout for double taps.
mxGraph.prototype.doubleTapTolerance
Specifies the tolerance for double taps.
Specifies the event name for down.
mxDragSource.prototype.dragElement
Holds the DOM node that is used to represent the drag preview.
mxDragSource.prototype.dragEnter = function(graph)
Actives the given graph as a drop target.
mxDragSource.prototype.dragExit = function(graph)
Deactivates the given graph as a drop target.
mxDragSource.prototype.dragOffset
mxPoint that specifies the offset of the dragElement.
mxDragSource.prototype.dragOver = function(graph,
evt)
Implements autoscroll, updates the currentPoint, highlights any drop targets and updates the preview.
Draws the given state to the given canvas.
mxCellHighlight.prototype.drawHighlight = function(state)
Creates and returns the highlight shape for the given state.
mxImageExport.prototype.drawImage = function(state,
canvas,
bounds,
image)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabel = function(state,
canvas,
bounds,
vert,
str)
Draws the given state to the given canvas.
mxImageExport.prototype.drawLabelBackground = function(state,
canvas,
bounds,
vert)
Draws background for the label of the given state to the given canvas.
mxImageExport.prototype.drawMarker = function(canvas,
state,
source)
Initializes the built-in shapes.
mxStencil.prototype.drawNode = function(canvas,
state,
node,
aspect)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawOverlays = function(state,
canvas)
Draws the overlays for the given state.
mxConnectionHandler.prototype.drawPreview = function()
Redraws the preview edge using the color and width returned by getEdgeColor and getEdgeWidth.
mxEdgeHandler.prototype.drawPreview = function()
Redraws the preview.
mxVertexHandler.prototype.drawPreview = function()
Redraws the preview.
mxImageExport.prototype.drawShape = function(state,
canvas,
shape)
Draws the given state to the given canvas.
mxStencil.prototype.drawShape = function(canvas,
state,
bounds,
background)
Draws this stencil inside the given bounds.
mxImageExport.prototype.drawState = function(state,
canvas)
Draws the given state and all its descendants to the given canvas.
mxConnectionHandler.prototype.drillHandler
Holds the drill event listener for later removal.
mxDefaultToolbar.prototype.drop = function(vertex,
evt,
target)
Handles a drop from a toolbar item to the graph.
mxDragSource.prototype.drop = function(graph,
evt,
dropTarget,
x,
y)
Returns the drop target for the given graph and coordinates.
Defines the color to be used for the highlighting target parent cells (for drag and drop).
mxGraph.prototype.dropEnabled
Specifies the return value for isDropEnabled.
mxDragSource.prototype.dropHandler
Holds the DOM node that is used to represent the drag preview.
diff --git a/docs/js-api/index/General5.html b/docs/js-api/index/General5.html index 9e234ee9a..188bbc4cc 100644 --- a/docs/js-api/index/General5.html +++ b/docs/js-api/index/General5.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 ease, mxMorphing
 edge, mxCell
 EDGE_SELECTION_COLOR, mxConstants
 EDGE_SELECTION_STROKEWIDTH, mxConstants
 edgeLabelsMovable, mxGraph
 edgeMapper, mxGraphHierarchyModel
 edgeRouting, mxCompactTreeLayout
 edges
 edgeState, mxConnectionHandler
 edgeStyle, mxCoordinateAssignment
 EDGESTYLE_ELBOW, mxConstants
 EDGESTYLE_ENTITY_RELATION, mxConstants
 EDGESTYLE_LOOP, mxConstants
 EDGESTYLE_ORTHOGONAL, mxConstants
 EDGESTYLE_SEGMENT, mxConstants
 EDGESTYLE_SIDETOSIDE, mxConstants
 EDGESTYLE_TOPTOBOTTOM, mxConstants
 editingCell, mxCellEditor
 editor
 ELBOW_HORIZONTAL, mxConstants
 ELBOW_VERTICAL, mxConstants
 ElbowConnector, mxEdgeStyle
 element, mxDragSource
 ellipse
 EllipsePerimeter, mxPerimeter
 EMPTY_ARRAY, mxGraph
 emptyLabelText, mxCellEditor
 enabled
 enableFill, mxArrow
 encode
 encodeCell
 encodeChanges, mxSession
 encodeDefaults, mxCodec
 encodeObject
 encodeValue, mxObjectCodec
 end, mxPath
 END_UPDATE
 endingUpdate, mxGraphModel
 endOffset, mxShape
 endUpdate, mxGraphModel
 enter, mxLog
 enterGroup, mxGraph
 enterStopsCellEditing, mxGraph
 ENTITY_SEGMENT, mxConstants
 EntityRelation, mxEdgeStyle
 equalEntries, mxUtils
 equalPoints, mxUtils
 equals
 error
 errorImage, mxUtils
 errorResource, mxUtils
 escape
 ESCAPE
 escapeEnabled, mxGraph
 escapePostData
 eval, mxUtils
 evaluateAttribute, mxStencil
 Event processing, mxGraph
 eventListeners, mxEventSource
 Events
 eventsEnabled, mxEventSource
 eventSource, mxEventSource
 evt, mxMouseEvent
 exclude, mxObjectCodec
 execute
 EXECUTE
 executeLayout, mxLayoutManager
 exitGroup, mxGraph
 expandedImage, mxGraph
 exportEnabled, mxGraph
 extend, mxUtils
 extendedDfs, mxGraphHierarchyModel
 extendParent, mxGraph
 extendParents
 extendParentsOnAdd, mxGraph
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 ease, mxMorphing
 edge, mxCell
 EDGE_SELECTION_COLOR, mxConstants
 EDGE_SELECTION_STROKEWIDTH, mxConstants
 edgeLabelsMovable, mxGraph
 edgeMapper, mxGraphHierarchyModel
 edgeRouting, mxCompactTreeLayout
 edges
 edgeState, mxConnectionHandler
 edgeStyle, mxCoordinateAssignment
 EDGESTYLE_ELBOW, mxConstants
 EDGESTYLE_ENTITY_RELATION, mxConstants
 EDGESTYLE_LOOP, mxConstants
 EDGESTYLE_ORTHOGONAL, mxConstants
 EDGESTYLE_SEGMENT, mxConstants
 EDGESTYLE_SIDETOSIDE, mxConstants
 EDGESTYLE_TOPTOBOTTOM, mxConstants
 editingCell, mxCellEditor
 editor
 ELBOW_HORIZONTAL, mxConstants
 ELBOW_VERTICAL, mxConstants
 ElbowConnector, mxEdgeStyle
 element, mxDragSource
 ellipse
 EllipsePerimeter, mxPerimeter
 EMPTY_ARRAY, mxGraph
 emptyLabelText, mxCellEditor
 enabled
 enableFill, mxArrow
 encode
 encodeCell
 encodeChanges, mxSession
 encodeDefaults, mxCodec
 encodeObject
 encodeValue, mxObjectCodec
 end, mxPath
 END_UPDATE
 endingUpdate, mxGraphModel
 endOffset, mxShape
 endUpdate, mxGraphModel
 enter, mxLog
 enterGroup, mxGraph
 enterStopsCellEditing, mxGraph
 ENTITY_SEGMENT, mxConstants
 EntityRelation, mxEdgeStyle
 equalEntries, mxUtils
 equalPoints, mxUtils
 equals
 error
 errorImage, mxUtils
 errorResource, mxUtils
 escape
 ESCAPE
 escapeEnabled, mxGraph
 escapePostData
 eval, mxUtils
 evaluateAttribute, mxStencil
 Event processing, mxGraph
 eventListeners, mxEventSource
 Events
 eventsEnabled, mxEventSource
 eventSource, mxEventSource
 evt, mxMouseEvent
 exclude, mxObjectCodec
 execute
 EXECUTE
 executeLayout, mxLayoutManager
 exitGroup, mxGraph
 expandedImage, mxGraph
 exportEnabled, mxGraph
 extend, mxUtils
 extendedDfs, mxGraphHierarchyModel
 extendParent, mxGraph
 extendParents
 extendParentsOnAdd, mxGraph
-
mxMorphing.prototype.ease
Ease-off for movement towards the given vector.
mxCell.prototype.edge
Specifies whether the cell is an edge.
Defines the color to be used for the selection border of edges.
Defines the strokewidth to be used for edge selections.
mxGraph.prototype.edgeLabelsMovable
Specifies the return value for edges in isLabelMovable.
mxGraphHierarchyModel.prototype.edgeMapper
Map from graph edges to internal model edges
mxCompactTreeLayout.prototype.edgeRouting
Whether or not to apply the internal tree edge routing
mxCell.prototype.edges
Holds the edges.
mxGraphHierarchyEdge.prototype.edges
The graph edge(s) this object represents.
mxConnectionHandler.prototype.edgeState
Optional mxCellState that represents the preview edge while the handler is active.
mxCoordinateAssignment.prototype.edgeStyle
The style to apply between cell layers to edge segments
Name of the elbow edge style.
Name of the entity relation edge style.
Name of the loop edge style.
Name of the generic orthogonal edge style.
Name of the generic segment edge style.
Name of the side to side edge style.
Name of the top to bottom edge style.
mxCellEditor.prototype.editingCell
Reference to the mxCell that is currently being edited.
mxDefaultKeyHandler.prototype.editor
Reference to the enclosing mxEditor.
mxDefaultToolbar.prototype.editor
Reference to the enclosing mxEditor.
Constant for elbow horizontal.
Constant for elbow vertical.
ElbowConnector: function (state,
source,
target,
points,
result)
Uses either SideToSide or TopToBottom depending on the horizontal flag in the cell style.
mxDragSource.prototype.element
Reference to the DOM node which was made draggable.
mxPath.prototype.ellipse = function(x,
y,
w,
h)
Adds the given ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
EllipsePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes an elliptic perimeter.
mxGraph.prototype.EMPTY_ARRAY
Immutable empty array instance.
mxCellEditor.prototype.emptyLabelText
Text to be displayed for empty labels.
mxAutoSaveManager.prototype.enabled
Specifies if event handling is enabled.
mxCellMarker.prototype.enabled
Specifies if the marker is enabled.
mxConnectionHandler.prototype.enabled
Specifies if events are handled.
mxConstraintHandler.prototype.enabled
Specifies if events are handled.
mxDragSource.prototype.enabled
Specifies if this drag source is enabled.
mxGraph.prototype.enabled
Specifies the return value for isEnabled.
mxGraphHandler.prototype.enabled
Specifies if events are handled.
mxKeyHandler.prototype.enabled
Specifies if events are handled.
mxLayoutManager.prototype.enabled
Specifies if event handling is enabled.
mxOutline.prototype.enabled
Specifies if events are handled.
mxPopupMenu.prototype.enabled
Specifies if events are handled.
mxRubberband.prototype.enabled
Specifies if events are handled.
mxSelectionCellsHandler.prototype.enabled
Specifies if events are handled.
mxSpaceManager.prototype.enabled
Specifies if event handling is enabled.
mxSwimlaneManager.prototype.enabled
Specifies if event handling is enabled.
mxToolbar.prototype.enabled
Specifies if events are handled.
mxTooltipHandler.prototype.enabled
Specifies if events are handled.
var enabled
Specifies if the converter is enabled.
mxArrow.prototype.enableFill
Specifies if fill colors should be ignored.
mxCodec.prototype.encode = function(obj)
Encodes the specified object and returns the resulting XML node.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
view)
Encodes the given mxGraphView using encodeCell starting at the model’s root.
mxObjectCodec.prototype.encode = function(enc,
obj)
Encodes the specified object and returns a node representing then given object.
codec.encode = function(enc,
obj)
Encodes a stylesheet.
mxCodec.prototype.encodeCell = function(cell,
node,
includeChildren)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
codec.encodeCell = function(enc,
view,
cell)
Recursively encodes the specifed cell.
mxSession.prototype.encodeChanges = function(changes,
invert)
Returns the XML representation for the given array of changes.
mxCodec.prototype.encodeDefaults
Specifies if default values should be encoded.
codec.encodeObject = function(enc,
obj,
node)
Encodes the given mxGraphModel by writing a (flat) XML sequence of cell nodes as produced by the mxCellCodec.
mxObjectCodec.prototype.encodeObject = function(enc,
obj,
node)
Encodes the value of each member in then given obj into the given node using encodeValue.
mxObjectCodec.prototype.encodeValue = function(enc,
obj,
name,
value,
node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
mxPath.prototype.end = function()
Ends the path.
Specifies the event name for endUpdate.
Fires after the updateLevel was decreased in endUpdate but before any notification or change dispatching.
mxGraphModel.prototype.endingUpdate
True if the program flow is currently inside endUpdate.
mxShape.prototype.endOffset
Specifies the offset in pixels from the last point in points and the actual start of the shape.
mxGraphModel.prototype.endUpdate = function()
Decrements the updateLevel by one and fires an undo event if the updateLevel reaches 0.
enter: function(string)
Writes the specified string to the console if TRACE is true and returns the current time in milliseconds.
mxGraph.prototype.enterGroup = function(cell)
Uses the given cell as the root of the displayed cell hierarchy.
mxGraph.prototype.enterStopsCellEditing
If true, pressing the enter key without pressing control or shift will stop editing and accept the new value.
Defines the length of the horizontal segment of an Entity Relation.
EntityRelation: function (state,
source,
target,
points,
result)
Implements an entity relation style for edges (as used in database schema diagrams).
equalEntries: function(a,
b)
Compares all entries in the given dictionaries.
equalPoints: function(a,
b)
Compares all mxPoints in the given lists.
mxPoint.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
mxRectangle.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
mxConnectionHandler.prototype.error
Holds the current validation error while connections are being created.
mxEdgeHandler.prototype.error
Holds the current validation error while a connection is being changed.
error: function(message,
width,
close,
icon)
Displays the given error message in a new mxWindow of the given width.
Defines the image used for error dialogs.
Specifies the resource key for the title of the error window.
mxGraph.prototype.escape = function(evt)
Processes an escape keystroke.
mxKeyHandler.prototype.escape = function(evt)
Hook to process ESCAPE keystrokes.
Fires when the escape key is pressed.
Specifies the event name for escape.
mxGraph.prototype.escapeEnabled
Specifies if mxKeyHandler should invoke escape when the escape key is pressed.
mxEditor.prototype.escapePostData
Specifies if the data in the post request for saving a diagram should be converted using encodeURIComponent.
mxSession.prototype.escapePostData
Specifies if the data in the post request sent in notify should be converted using encodeURIComponent.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxStencil.prototype.evaluateAttribute = function(node,
attribute,
state)
Gets the attribute for the given name from the given node.
mxEventSource.prototype.eventListeners
Holds the event names and associated listeners in an array.
mxEventSource.prototype.eventsEnabled
Specifies if events can be fired.
mxEventSource.prototype.eventSource
Optional source for events.
mxMouseEvent.prototype.evt
Holds the inner event object.
mxObjectCodec.prototype.exclude
Array containing the variable names that should be ignored by the codec.
mxCellAttributeChange.prototype.execute = function()
Changes the attribute of the cell’s user object by using mxCell.setAttribute.
mxChildChange.prototype.execute = function()
Changes the parent of child using mxGraphModel.parentForCellChanged and removes or restores the cell’s connections.
mxCircleLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxCollapseChange.prototype.execute = function()
Changes the collapsed state of cell to previous using mxGraphModel.collapsedStateForCellChanged.
mxCompactTreeLayout.prototype.execute = function(parent,
root)
Implements mxGraphLayout.execute.
mxCompositeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute by executing all layouts in a single transaction.
mxCoordinateAssignment.prototype.execute = function(parent)
A basic horizontal coordinate assignment algorithm
mxCurrentRootChange.prototype.execute = function()
Changes the current root of the view.
mxEdgeLabelLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxEditor.prototype.execute = function (actionname,
cell,
evt)
Executes the function with the given name in actions passing the editor instance and given cell as the first and second argument.
mxFastOrganicLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxGeometryChange.prototype.execute = function()
Changes the geometry of cell ro previous using mxGraphModel.geometryForCellChanged.
mxGraphLayout.prototype.execute = function(parent)
Executes the layout algorithm for the children of the given parent.
mxGraphModel.prototype.execute = function(change)
Executes the given edit and fires events if required.
mxHierarchicalLayout.prototype.execute = function(parent,
roots)
Executes the layout for the children of the specified parent.
mxHierarchicalLayoutStage.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxMedianHybridCrossingReduction.prototype.execute = function(parent)
Performs a vertex ordering within ranks as described by Gansner et al 1993
mxMinimumCycleRemover.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxParallelEdgeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxPartitionLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxRootChange.prototype.execute = function()
Carries out a change of the root using mxGraphModel.rootChanged.
mxSelectionChange.prototype.execute = function()
Changes the current root of the view.
mxStackLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxStyleChange.prototype.execute = function()
Changes the style of cell to previous using mxGraphModel.styleForCellChanged.
mxTerminalChange.prototype.execute = function()
Changes the terminal of cell to previous using mxGraphModel.terminalForCellChanged.
mxValueChange.prototype.execute = function()
Changes the value of cell to previous using mxGraphModel.valueForCellChanged.
mxVisibleChange.prototype.execute = function()
Changes the visible state of cell to previous using mxGraphModel.visibleStateForCellChanged.
Specifies the event name for execute.
Fires between begin- and endUpdate and after an atomic change was executed in the model.
mxLayoutManager.prototype.executeLayout = function(layout,
parent)
Executes the given layout on the given parent.
mxGraph.prototype.exitGroup = function()
Changes the current root to the next valid root in the displayed cell hierarchy.
mxGraph.prototype.expandedImage
Specifies the mxImage to indicate a expanded state.
mxGraph.prototype.exportEnabled
Specifies the return value for canExportCell.
extend: function(ctor,
superCtor)
Assigns a copy of the superclass prototype to the subclass prototype.
mxGraphHierarchyModel.prototype.extendedDfs = function(parent,
root,
connectingEdge,
visitor,
seen,
ancestors,
childHash,
layer)
Performs a depth first search on the internal hierarchy model.
mxGraph.prototype.extendParent = function(cell)
Resizes the parents recursively so that they contain the complete area of the resized child cell.
mxGraph.prototype.extendParents
Specifies if a parent should contain the child bounds after a resize of the child.
mxSpaceManager.prototype.extendParents
Specifies if event handling is enabled.
mxGraph.prototype.extendParentsOnAdd
Specifies if parents should be extended according to the extendParents switch if cells are added.
+
mxMorphing.prototype.ease
Ease-off for movement towards the given vector.
mxCell.prototype.edge
Specifies whether the cell is an edge.
Defines the color to be used for the selection border of edges.
Defines the strokewidth to be used for edge selections.
mxGraph.prototype.edgeLabelsMovable
Specifies the return value for edges in isLabelMovable.
mxGraphHierarchyModel.prototype.edgeMapper
Map from graph edges to internal model edges
mxCompactTreeLayout.prototype.edgeRouting
Whether or not to apply the internal tree edge routing
mxCell.prototype.edges
Holds the edges.
mxGraphHierarchyEdge.prototype.edges
The graph edge(s) this object represents.
mxConnectionHandler.prototype.edgeState
Optional mxCellState that represents the preview edge while the handler is active.
mxCoordinateAssignment.prototype.edgeStyle
The style to apply between cell layers to edge segments
Name of the elbow edge style.
Name of the entity relation edge style.
Name of the loop edge style.
Name of the generic orthogonal edge style.
Name of the generic segment edge style.
Name of the side to side edge style.
Name of the top to bottom edge style.
mxCellEditor.prototype.editingCell
Reference to the mxCell that is currently being edited.
mxDefaultKeyHandler.prototype.editor
Reference to the enclosing mxEditor.
mxDefaultToolbar.prototype.editor
Reference to the enclosing mxEditor.
Constant for elbow horizontal.
Constant for elbow vertical.
ElbowConnector: function (state,
source,
target,
points,
result)
Uses either SideToSide or TopToBottom depending on the horizontal flag in the cell style.
mxDragSource.prototype.element
Reference to the DOM node which was made draggable.
mxPath.prototype.ellipse = function(x,
y,
w,
h)
Adds the given ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
ellipse: function(x,
y,
w,
h)
Sets the current path to an ellipse.
EllipsePerimeter: function (bounds,
vertex,
next,
orthogonal)
Describes an elliptic perimeter.
mxGraph.prototype.EMPTY_ARRAY
Immutable empty array instance.
mxCellEditor.prototype.emptyLabelText
Text to be displayed for empty labels.
mxAutoSaveManager.prototype.enabled
Specifies if event handling is enabled.
mxCellMarker.prototype.enabled
Specifies if the marker is enabled.
mxConnectionHandler.prototype.enabled
Specifies if events are handled.
mxConstraintHandler.prototype.enabled
Specifies if events are handled.
mxDragSource.prototype.enabled
Specifies if this drag source is enabled.
mxGraph.prototype.enabled
Specifies the return value for isEnabled.
mxGraphHandler.prototype.enabled
Specifies if events are handled.
mxKeyHandler.prototype.enabled
Specifies if events are handled.
mxLayoutManager.prototype.enabled
Specifies if event handling is enabled.
mxOutline.prototype.enabled
Specifies if events are handled.
mxPopupMenu.prototype.enabled
Specifies if events are handled.
mxRubberband.prototype.enabled
Specifies if events are handled.
mxSelectionCellsHandler.prototype.enabled
Specifies if events are handled.
mxSpaceManager.prototype.enabled
Specifies if event handling is enabled.
mxSwimlaneManager.prototype.enabled
Specifies if event handling is enabled.
mxToolbar.prototype.enabled
Specifies if events are handled.
mxTooltipHandler.prototype.enabled
Specifies if events are handled.
var enabled
Specifies if the converter is enabled.
mxArrow.prototype.enableFill
Specifies if fill colors should be ignored.
mxCodec.prototype.encode = function(obj)
Encodes the specified object and returns the resulting XML node.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
obj)
Returns null.
codec.encode = function(enc,
view)
Encodes the given mxGraphView using encodeCell starting at the model’s root.
mxObjectCodec.prototype.encode = function(enc,
obj)
Encodes the specified object and returns a node representing then given object.
codec.encode = function(enc,
obj)
Encodes a stylesheet.
mxCodec.prototype.encodeCell = function(cell,
node,
includeChildren)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
codec.encodeCell = function(enc,
view,
cell)
Recursively encodes the specifed cell.
mxSession.prototype.encodeChanges = function(changes,
invert)
Returns the XML representation for the given array of changes.
mxCodec.prototype.encodeDefaults
Specifies if default values should be encoded.
codec.encodeObject = function(enc,
obj,
node)
Encodes the given mxGraphModel by writing a (flat) XML sequence of cell nodes as produced by the mxCellCodec.
mxObjectCodec.prototype.encodeObject = function(enc,
obj,
node)
Encodes the value of each member in then given obj into the given node using encodeValue.
mxObjectCodec.prototype.encodeValue = function(enc,
obj,
name,
value,
node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
mxPath.prototype.end = function()
Ends the path.
Specifies the event name for endUpdate.
Fires after the updateLevel was decreased in endUpdate but before any notification or change dispatching.
mxGraphModel.prototype.endingUpdate
True if the program flow is currently inside endUpdate.
mxShape.prototype.endOffset
Specifies the offset in pixels from the last point in points and the actual start of the shape.
mxGraphModel.prototype.endUpdate = function()
Decrements the updateLevel by one and fires an undo event if the updateLevel reaches 0.
enter: function(string)
Writes the specified string to the console if TRACE is true and returns the current time in milliseconds.
mxGraph.prototype.enterGroup = function(cell)
Uses the given cell as the root of the displayed cell hierarchy.
mxGraph.prototype.enterStopsCellEditing
If true, pressing the enter key without pressing control or shift will stop editing and accept the new value.
Defines the length of the horizontal segment of an Entity Relation.
EntityRelation: function (state,
source,
target,
points,
result)
Implements an entity relation style for edges (as used in database schema diagrams).
equalEntries: function(a,
b)
Compares all entries in the given dictionaries.
equalPoints: function(a,
b)
Compares all mxPoints in the given lists.
mxPoint.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
mxRectangle.prototype.equals = function(obj)
Returns true if the given object equals this rectangle.
mxConnectionHandler.prototype.error
Holds the current validation error while connections are being created.
mxEdgeHandler.prototype.error
Holds the current validation error while a connection is being changed.
error: function(message,
width,
close,
icon)
Displays the given error message in a new mxWindow of the given width.
Defines the image used for error dialogs.
Specifies the resource key for the title of the error window.
mxGraph.prototype.escape = function(evt)
Processes an escape keystroke.
mxKeyHandler.prototype.escape = function(evt)
Hook to process ESCAPE keystrokes.
Fires when the escape key is pressed.
Specifies the event name for escape.
mxGraph.prototype.escapeEnabled
Specifies if mxKeyHandler should invoke escape when the escape key is pressed.
mxEditor.prototype.escapePostData
Specifies if the data in the post request for saving a diagram should be converted using encodeURIComponent.
mxSession.prototype.escapePostData
Specifies if the data in the post request sent in notify should be converted using encodeURIComponent.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxStencil.prototype.evaluateAttribute = function(node,
attribute,
state)
Gets the attribute for the given name from the given node.
mxEventSource.prototype.eventListeners
Holds the event names and associated listeners in an array.
mxEventSource.prototype.eventsEnabled
Specifies if events can be fired.
mxEventSource.prototype.eventSource
Optional source for events.
mxMouseEvent.prototype.evt
Holds the inner event object.
mxObjectCodec.prototype.exclude
Array containing the variable names that should be ignored by the codec.
mxCellAttributeChange.prototype.execute = function()
Changes the attribute of the cell’s user object by using mxCell.setAttribute.
mxChildChange.prototype.execute = function()
Changes the parent of child using mxGraphModel.parentForCellChanged and removes or restores the cell’s connections.
mxCircleLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxCollapseChange.prototype.execute = function()
Changes the collapsed state of cell to previous using mxGraphModel.collapsedStateForCellChanged.
mxCompactTreeLayout.prototype.execute = function(parent,
root)
Implements mxGraphLayout.execute.
mxCompositeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute by executing all layouts in a single transaction.
mxCoordinateAssignment.prototype.execute = function(parent)
A basic horizontal coordinate assignment algorithm
mxCurrentRootChange.prototype.execute = function()
Changes the current root of the view.
mxEdgeLabelLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxEditor.prototype.execute = function (actionname,
cell,
evt)
Executes the function with the given name in actions passing the editor instance and given cell as the first and second argument.
mxFastOrganicLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxGeometryChange.prototype.execute = function()
Changes the geometry of cell ro previous using mxGraphModel.geometryForCellChanged.
mxGraphLayout.prototype.execute = function(parent)
Executes the layout algorithm for the children of the given parent.
mxGraphModel.prototype.execute = function(change)
Executes the given edit and fires events if required.
mxHierarchicalLayout.prototype.execute = function(parent,
roots)
Executes the layout for the children of the specified parent.
mxHierarchicalLayoutStage.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxMedianHybridCrossingReduction.prototype.execute = function(parent)
Performs a vertex ordering within ranks as described by Gansner et al 1993
mxMinimumCycleRemover.prototype.execute = function(parent)
Takes the graph detail and configuration information within the facade and creates the resulting laid out graph within that facade for further use.
mxParallelEdgeLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxPartitionLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxRootChange.prototype.execute = function()
Carries out a change of the root using mxGraphModel.rootChanged.
mxSelectionChange.prototype.execute = function()
Changes the current root of the view.
mxStackLayout.prototype.execute = function(parent)
Implements mxGraphLayout.execute.
mxStyleChange.prototype.execute = function()
Changes the style of cell to previous using mxGraphModel.styleForCellChanged.
mxTerminalChange.prototype.execute = function()
Changes the terminal of cell to previous using mxGraphModel.terminalForCellChanged.
mxValueChange.prototype.execute = function()
Changes the value of cell to previous using mxGraphModel.valueForCellChanged.
mxVisibleChange.prototype.execute = function()
Changes the visible state of cell to previous using mxGraphModel.visibleStateForCellChanged.
Specifies the event name for execute.
Fires between begin- and endUpdate and after an atomic change was executed in the model.
mxLayoutManager.prototype.executeLayout = function(layout,
parent)
Executes the given layout on the given parent.
mxGraph.prototype.exitGroup = function()
Changes the current root to the next valid root in the displayed cell hierarchy.
mxGraph.prototype.expandedImage
Specifies the mxImage to indicate a expanded state.
mxGraph.prototype.exportEnabled
Specifies the return value for canExportCell.
extend: function(ctor,
superCtor)
Assigns a copy of the superclass prototype to the subclass prototype.
mxGraphHierarchyModel.prototype.extendedDfs = function(parent,
root,
connectingEdge,
visitor,
seen,
ancestors,
childHash,
layer)
Performs a depth first search on the internal hierarchy model.
mxGraph.prototype.extendParent = function(cell)
Resizes the parents recursively so that they contain the complete area of the resized child cell.
mxGraph.prototype.extendParents
Specifies if a parent should contain the child bounds after a resize of the child.
mxSpaceManager.prototype.extendParents
Specifies if event handling is enabled.
mxGraph.prototype.extendParentsOnAdd
Specifies if parents should be extended according to the extendParents switch if cells are added.
diff --git a/docs/js-api/index/General6.html b/docs/js-api/index/General6.html index 117674bf2..221eb5d2d 100644 --- a/docs/js-api/index/General6.html +++ b/docs/js-api/index/General6.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
F
 factoryMethod
 fadeOut
 fgNodes, mxStencil
 FIELD_NAME, mxObjectIdentity
 filename, mxEditor
 fill
 fillstroke
 filterCells, mxGraphModel
 filterDescendants, mxGraphModel
 findNearestSegment, mxUtils
 findNode, mxUtils
 findNodeByAttribute, mxUtils
 findParallels, mxParallelEdgeLayout
 findTreeRoots
 fineTuning
 FIRED
 fireEvent, mxEventSource
 fireMouseEvent, mxGraph
 first, mxConnectionHandler
 fit
 fixRanks, mxGraphHierarchyModel
 fixRoots, mxHierarchicalLayout
 FLIP_EDGE
 flipEdge, mxGraph
 focusLost, mxCellEditor
 foEnabled, mxSvgCanvas2D
 FOLD_CELLS
 foldCells, mxGraph
 foldHandler, mxSpaceManager
 Folding, mxGraph
 foldingEnabled, mxGraph
 FONT_BOLD, mxConstants
 FONT_ITALIC, mxConstants
 FONT_SHADOW, mxConstants
 FONT_UNDERLINE, mxConstants
 forceConstant, mxFastOrganicLayout
 forceConstantSquared, mxFastOrganicLayout
 forcedInserting, mxEditor
 forceIgnoreStringSize, mxText
 format, mxPath
 Functions
GlobalMedianCellSortermxActormxAnimationmxArrowmxAutoSaveManagermxCellmxCellAttributeChangemxCellCodecmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCellTrackermxChildChangemxChildChangeCodecmxCircleLayoutmxClientmxClipboardmxCloudmxCodecmxCodecRegistrymxCollapseChangemxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConnectormxConstraintHandlermxCoordinateAssignmentmxCurrentRootChangemxCylindermxDefaultKeyHandlermxDefaultKeyHandlerCodecmxDefaultPopupMenumxDefaultPopupMenuCodecmxDefaultToolbarmxDefaultToolbarCodecmxDictionarymxDivResizermxDoubleEllipsemxDragSourcemxEdgeHandlermxEdgeLabelLayoutmxEdgeStylemxEditorCodecmxEffectsmxElbowEdgeHandlermxEllipsemxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGenericChangeCodecmxGeometrymxGeometryChangemxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGraphViewCodecmxGuidemxHexagonmxHierarchicalLayoutmxHierarchicalLayoutStagemxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLinemxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxModelCodecmxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxParallelEdgeLayoutmxPartitionLayoutmxPathmxPerimetermxPointmxPolylinemxPopupMenumxPrintPreviewmxRectanglemxRectangleShapemxResourcesmxRhombusmxRootChangemxRootChangeCodecmxRubberbandmxSelectionCellsHandlermxSelectionChangemxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStencilRegistrymxStencilShapemxStyleChangemxStyleRegistrymxStylesheetmxStylesheetCodecmxSvgCanvas2DmxSwimlanemxSwimlaneManagermxTemporaryCellStatesmxTerminalChangemxTerminalChangeCodecmxTextmxToolbarmxTooltipHandlermxTrianglemxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxValueChangemxVertexHandlermxVisibleChangemxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
F
 factoryMethod
 fadeOut
 fgNodes, mxStencil
 FIELD_NAME, mxObjectIdentity
 filename, mxEditor
 fill
 fillstroke
 filterCells, mxGraphModel
 filterDescendants, mxGraphModel
 findNearestSegment, mxUtils
 findNode, mxUtils
 findNodeByAttribute, mxUtils
 findParallels, mxParallelEdgeLayout
 findTreeRoots
 fineTuning
 FIRED
 fireEvent, mxEventSource
 fireMouseEvent, mxGraph
 first, mxConnectionHandler
 fit
 fixRanks, mxGraphHierarchyModel
 fixRoots, mxHierarchicalLayout
 FLIP_EDGE
 flipEdge, mxGraph
 focusLost, mxCellEditor
 foEnabled, mxSvgCanvas2D
 FOLD_CELLS
 foldCells, mxGraph
 foldHandler, mxSpaceManager
 Folding, mxGraph
 foldingEnabled, mxGraph
 FONT_BOLD, mxConstants
 FONT_ITALIC, mxConstants
 FONT_SHADOW, mxConstants
 FONT_UNDERLINE, mxConstants
 forceConstant, mxFastOrganicLayout
 forceConstantSquared, mxFastOrganicLayout
 forcedInserting, mxEditor
 forceIgnoreStringSize, mxText
 format, mxPath
 Functions
GlobalMedianCellSortermxActormxAnimationmxArrowmxAutoSaveManagermxCellmxCellAttributeChangemxCellCodecmxCellEditormxCellHighlightmxCellMarkermxCellOverlaymxCellPathmxCellRenderermxCellStatemxCellStatePreviewmxCellTrackermxChildChangemxChildChangeCodecmxCircleLayoutmxClientmxClipboardmxCloudmxCodecmxCodecRegistrymxCollapseChangemxCompactTreeLayoutmxCompositeLayoutmxConnectionConstraintmxConnectormxConstraintHandlermxCoordinateAssignmentmxCurrentRootChangemxCylindermxDefaultKeyHandlermxDefaultKeyHandlerCodecmxDefaultPopupMenumxDefaultPopupMenuCodecmxDefaultToolbarmxDefaultToolbarCodecmxDictionarymxDivResizermxDoubleEllipsemxDragSourcemxEdgeHandlermxEdgeLabelLayoutmxEdgeStylemxEditorCodecmxEffectsmxElbowEdgeHandlermxEllipsemxEventmxEventObjectmxEventSourcemxFastOrganicLayoutmxFormmxGenericChangeCodecmxGeometrymxGeometryChangemxGraphAbstractHierarchyCellmxGraphHandlermxGraphHierarchyEdgemxGraphHierarchyModelmxGraphHierarchyNodemxGraphLayoutmxGraphModelmxGraphSelectionModelmxGraphViewmxGraphViewCodecmxGuidemxHexagonmxHierarchicalLayoutmxHierarchicalLayoutStagemxImagemxImageBundlemxImageExportmxImageShapemxKeyHandlermxLabelmxLayoutManagermxLinemxLogmxMarkermxMedianHybridCrossingReductionmxMinimumCycleRemovermxModelCodecmxMorphingmxMouseEventmxMultiplicitymxObjectCodecmxObjectIdentitymxOutlinemxPanningHandlermxParallelEdgeLayoutmxPartitionLayoutmxPathmxPerimetermxPointmxPolylinemxPopupMenumxPrintPreviewmxRectanglemxRectangleShapemxResourcesmxRhombusmxRootChangemxRootChangeCodecmxRubberbandmxSelectionCellsHandlermxSelectionChangemxSessionmxShapemxSpaceManagermxStackLayoutmxStencilmxStencilRegistrymxStencilShapemxStyleChangemxStyleRegistrymxStylesheetmxStylesheetCodecmxSvgCanvas2DmxSwimlanemxSwimlaneManagermxTemporaryCellStatesmxTerminalChangemxTerminalChangeCodecmxTextmxToolbarmxTooltipHandlermxTrianglemxUndoableEditmxUndoManagermxUrlConvertermxUtilsmxValueChangemxVertexHandlermxVisibleChangemxWindowmxXmlCanvas2DmxXmlRequestWeightedCellSorter
-
mxConnectionHandler.prototype.factoryMethod
Function that is used for creating new edges.
mxPopupMenu.prototype.factoryMethod
Function that is used to create the popup menu.
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
Asynchronous fade-out operation.
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
See mxEffects.fadeOut.
Holds the XML node with the stencil description.
Name of the field to be used to store the object ID.
mxEditor.prototype.filename
Contains the URL of the last opened file as a string.
mxStackLayout.prototype.fill
Boolean indicating if dimension should be changed to fill out the parent cell.
fill: function()
Fills the current path.
fill: function()
Fills the current path.
Fills and paints the outline of the current path.
Fills and paints the outline of the current path.
mxGraphModel.prototype.filterCells = function(cells,
filter)
Returns the cells from the given array where the fiven filter function returns true.
mxGraphModel.prototype.filterDescendants = function(filter,
parent)
Visits all cells recursively and applies the specified filter function to each cell.
findNearestSegment: function(state,
x,
y)
Finds the index of the nearest segment on the given cell state for the specified coordinate pair.
findNode: function(node,
attr,
value)
Returns the first node where attr equals value.
findNodeByAttribute: function()
Returns the first node where the given attribute matches the given value.
mxParallelEdgeLayout.prototype.findParallels = function(parent)
Finds the parallel edges in the given parent.
mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)
Returns all children in the given parent which do not have incoming edges.
mxHierarchicalLayout.prototype.findTreeRoots = function(parent)
Returns all children in the given parent which do not have incoming edges.
mxCoordinateAssignment.prototype.fineTuning
Whether or not to perform local optimisations and iterate multiple times through the algorithm.
mxHierarchicalLayout.prototype.fineTuning
Whether or not to perform local optimisations and iterate multiple times through the algorithm.
Specifies the event name for fired.
Fires after an array of edits has been executed on the model.
mxEventSource.prototype.fireEvent = function(evt,
sender)
Dispatches the given event to the listeners which are registered for the event.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxConnectionHandler.prototype.first
Holds the mxPoint where the mouseDown took place while the handler is active.
mxGraph.prototype.fit = function(border,
keepOrigin)
Scales the graph such that the complete diagram fits into container and returns the current scale in the view.
fit: function(node)
Makes sure the given node is inside the visible area of the window.
mxWindow.prototype.fit = function()
Makes sure the window is inside the client area of the window.
mxGraphHierarchyModel.prototype.fixRanks = function()
Fixes the layer assignments to the values stored in the nodes.
mxHierarchicalLayout.prototype.fixRoots
Whether or not to fix the position of the root cells.
Specifies the event name for flipEdge.
Fires between begin- and endUpdate in flipEdge.
mxGraph.prototype.flipEdge = function(edge)
Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.
mxCellEditor.prototype.focusLost = function()
Called if the textarea has lost focus.
var foEnabled
Specifies if use of foreignObject for HTML markup is allowed.
Specifies the event name for foldCells.
Fires between begin- and endUpdate in foldCells.
mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)
Sets the collapsed state of the specified cells and all descendants if recurse is true.
mxSpaceManager.prototype.foldHandler
Holds the function that handles the fold event.
mxGraph.prototype.foldingEnabled
Specifies if folding (collapse and expand via an image icon in the graph should be enabled).
Constant for bold fonts.
Constant for italic fonts.
Constant for fonts with a shadow.
Constant for underlined fonts.
mxFastOrganicLayout.prototype.forceConstant
The force constant by which the attractive forces are divided and the replusive forces are multiple by the square of.
mxFastOrganicLayout.prototype.forceConstantSquared
Cache of <forceConstant>^2 for performance.
mxEditor.prototype.forcedInserting
Specifies if a new cell should be inserted on a single click even using insertFunction if there is a cell under the mousepointer, otherwise the cell under the mousepointer is selected.
mxText.prototype.forceIgnoreStringSize
Specifies if the string size should always be ignored.
mxPath.prototype.format
Defines the format for the output of this path.
+
mxConnectionHandler.prototype.factoryMethod
Function that is used for creating new edges.
mxPopupMenu.prototype.factoryMethod
Function that is used to create the popup menu.
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
Asynchronous fade-out operation.
fadeOut: function(node,
from,
remove,
step,
delay,
isEnabled)
See mxEffects.fadeOut.
Holds the XML node with the stencil description.
Name of the field to be used to store the object ID.
mxEditor.prototype.filename
Contains the URL of the last opened file as a string.
mxStackLayout.prototype.fill
Boolean indicating if dimension should be changed to fill out the parent cell.
fill: function()
Fills the current path.
fill: function()
Fills the current path.
Fills and paints the outline of the current path.
Fills and paints the outline of the current path.
mxGraphModel.prototype.filterCells = function(cells,
filter)
Returns the cells from the given array where the fiven filter function returns true.
mxGraphModel.prototype.filterDescendants = function(filter,
parent)
Visits all cells recursively and applies the specified filter function to each cell.
findNearestSegment: function(state,
x,
y)
Finds the index of the nearest segment on the given cell state for the specified coordinate pair.
findNode: function(node,
attr,
value)
Returns the first node where attr equals value.
findNodeByAttribute: function()
Returns the first node where the given attribute matches the given value.
mxParallelEdgeLayout.prototype.findParallels = function(parent)
Finds the parallel edges in the given parent.
mxGraph.prototype.findTreeRoots = function(parent,
isolate,
invert)
Returns all children in the given parent which do not have incoming edges.
mxHierarchicalLayout.prototype.findTreeRoots = function(parent)
Returns all children in the given parent which do not have incoming edges.
mxCoordinateAssignment.prototype.fineTuning
Whether or not to perform local optimisations and iterate multiple times through the algorithm.
mxHierarchicalLayout.prototype.fineTuning
Whether or not to perform local optimisations and iterate multiple times through the algorithm.
Specifies the event name for fired.
Fires after an array of edits has been executed on the model.
mxEventSource.prototype.fireEvent = function(evt,
sender)
Dispatches the given event to the listeners which are registered for the event.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxConnectionHandler.prototype.first
Holds the mxPoint where the mouseDown took place while the handler is active.
mxGraph.prototype.fit = function(border,
keepOrigin)
Scales the graph such that the complete diagram fits into container and returns the current scale in the view.
fit: function(node)
Makes sure the given node is inside the visible area of the window.
mxWindow.prototype.fit = function()
Makes sure the window is inside the client area of the window.
mxGraphHierarchyModel.prototype.fixRanks = function()
Fixes the layer assignments to the values stored in the nodes.
mxHierarchicalLayout.prototype.fixRoots
Whether or not to fix the position of the root cells.
Specifies the event name for flipEdge.
Fires between begin- and endUpdate in flipEdge.
mxGraph.prototype.flipEdge = function(edge)
Toggles the style of the given edge between null (or empty) and alternateEdgeStyle.
mxCellEditor.prototype.focusLost = function()
Called if the textarea has lost focus.
var foEnabled
Specifies if use of foreignObject for HTML markup is allowed.
Specifies the event name for foldCells.
Fires between begin- and endUpdate in foldCells.
mxGraph.prototype.foldCells = function(collapse,
recurse,
cells,
checkFoldable)
Sets the collapsed state of the specified cells and all descendants if recurse is true.
mxSpaceManager.prototype.foldHandler
Holds the function that handles the fold event.
mxGraph.prototype.foldingEnabled
Specifies if folding (collapse and expand via an image icon in the graph should be enabled).
Constant for bold fonts.
Constant for italic fonts.
Constant for fonts with a shadow.
Constant for underlined fonts.
mxFastOrganicLayout.prototype.forceConstant
The force constant by which the attractive forces are divided and the replusive forces are multiple by the square of.
mxFastOrganicLayout.prototype.forceConstantSquared
Cache of <forceConstant>^2 for performance.
mxEditor.prototype.forcedInserting
Specifies if a new cell should be inserted on a single click even using insertFunction if there is a cell under the mousepointer, otherwise the cell under the mousepointer is selected.
mxText.prototype.forceIgnoreStringSize
Specifies if the string size should always be ignored.
mxPath.prototype.format
Defines the format for the output of this path.
diff --git a/docs/js-api/index/General7.html b/docs/js-api/index/General7.html index f0815ee54..0b4645a63 100644 --- a/docs/js-api/index/General7.html +++ b/docs/js-api/index/General7.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometry, mxCell
 geometryForCellChanged, mxGraphModel
 gestureEnabled, mxGraph
 get
 GET
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundBounds, mxImageExport
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBoundingBox, mxUtils
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getConverter
 getCoreCell
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta, mxMorphing
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocument, mxXmlCanvas2D
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientId, mxShape
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds, mxImageExport
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds, mxCellRenderer
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset
 getOffsetSize, mxGraph
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPath, mxPath
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot, mxGraphModel
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation, mxShape
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShapeConstructor, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgClip, mxText
 getSvgShadowTransform, mxShape
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTableSize, mxText
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVerticalAlign, mxGraph
 getVerticalOffset, mxText
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 glassSize, mxImageExport
 graph
 Graph appearance, mxGraph
 Graph behaviour, mxGraph
 Graph display, mxGraph
 Graph events, mxGraph
 graphBounds, mxGraphView
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint
 graphX, mxMouseEvent
 graphY, mxMouseEvent
 gridEnabled
 gridSize, mxGraph
 GROUP_CELLS
 groupCells
 Grouping, mxGraph
 groupPadding
 grow, mxRectangle
 guide, mxGraphHandler
 GUIDE_COLOR, mxConstants
 GUIDE_STROKEWIDTH, mxConstants
 guidesEnabled
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometry, mxCell
 geometryForCellChanged, mxGraphModel
 gestureEnabled, mxGraph
 get
 GET
 getAlignmentTolerance, mxConnectionHandler
 getAllConnectionConstraints, mxGraph
 getAllEdges, mxGraph
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBackgroundBounds, mxImageExport
 getBackgroundImage, mxGraph
 getBackgroundPageBounds, mxGraphView
 getBackgroundPane, mxGraphView
 getBaseUrl, mxUrlConverter
 getBorder, mxGraph
 getBorderSizes, mxGraph
 getBoundingBox, mxUtils
 getBoundingBoxFromGeometry, mxGraph
 getBounds
 getBoundsForGroup, mxGraph
 getCanvas, mxGraphView
 getCell
 getCellAt, mxGraph
 getCellBounds
 getCellContainmentArea, mxGraph
 getCellForPopupEvent, mxPanningHandler
 getCellGeometry, mxGraph
 getCellOverlays, mxGraph
 getCells
 getCellsBeyond, mxGraph
 getCellsForChange, mxLayoutManager
 getCellsForEdit, mxLayoutManager
 getCellsForGroup, mxGraph
 getCellStates, mxGraphView
 getCellsToShift, mxSpaceManager
 getCellStyle
 getCellValidationError, mxGraph
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCells
 getChildCount
 getChildEdges
 getChildNodes, mxUtils
 getChildOffsetForCell, mxGraph
 getChildren, mxGraphModel
 getChildVertices
 getClientX, mxEvent
 getClientY, mxEvent
 getCloneableCells, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxUtils
 getConnectImage, mxConnectionHandler
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getConnections
 getConstraint, mxGraphLayout
 getControlBounds, mxCellRenderer
 getConverter
 getCoreCell
 getCurrentRoot, mxGraph
 getCurrentStyle, mxUtils
 getCurrentValue, mxCellEditor
 getCursor, mxShape
 getCursorForBend, mxElbowEdgeHandler
 getCursorForCell, mxGraph
 getDefaultBundle, mxResources
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDeletableCells, mxGraph
 getDelta, mxMorphing
 getDescendants, mxGraphModel
 getDirectedEdgeCount, mxGraphModel
 getDocType, mxPrintPreview
 getDocument, mxXmlCanvas2D
 getDocumentElement, mxXmlRequest
 getDocumentHeight, mxDivResizer
 getDocumentWidth, mxDivResizer
 getDrawPane, mxGraphView
 getDropTarget
 getEdgeAt
 getEdgeColor, mxConnectionHandler
 getEdgeCount
 getEdgeId, mxParallelEdgeLayout
 getEdgeIndex, mxCell
 getEdges
 getEdgesBetween
 getEdgeStyle
 getEdgeValidationError, mxGraph
 getEdgeWidth, mxConnectionHandler
 getEditingCell, mxCellEditor
 getEditingValue, mxGraph
 getEditorBounds, mxCellEditor
 getElement, mxWindow
 getElementById, mxCodec
 getEmptyLabelText, mxCellEditor
 getEvent, mxMouseEvent
 getEventSource, mxEventSource
 getExportableCells, mxGraph
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFirstSelectableCell, mxGraphSelectionModel
 getFoldableCells, mxGraph
 getFoldingImage, mxGraph
 getFunction, mxKeyHandler
 getFunctionName, mxUtils
 getGeneralPurposeVariable
 getGeometry
 getGradientId, mxShape
 getGraph
 getGraphBounds
 getGraphForEvent, mxDragSource
 getGraphX, mxMouseEvent
 getGraphY, mxMouseEvent
 getGridSize, mxGraph
 getGuideStates, mxGraphHandler
 getGuideTolerance, mxGuide
 getHandleFillColor, mxEdgeHandler
 getHandleForEvent
 getHandler, mxSelectionCellsHandler
 getHotspot, mxCellMarker
 getId
 getImage
 getImageBounds, mxImageExport
 getImageForConstraint, mxConstraintHandler
 getImageFromBundles, mxGraph
 getImportableCells, mxGraph
 getIncomingEdges
 getIndex, mxCell
 getIndicatorColor, mxGraph
 getIndicatorGradientColor, mxGraph
 getIndicatorImage, mxGraph
 getIndicatorShape, mxGraph
 getInitialCellForEvent, mxGraphHandler
 getInitialValue, mxCellEditor
 getInnerHtml, mxUtils
 getKeys, mxDictionary
 getLabel, mxGraph
 getLabelBounds, mxCellRenderer
 getLabelValue, mxCellRenderer
 getLayout, mxLayoutManager
 getMainEvent, mxEvent
 getMarkedState, mxCellMarker
 getMarkerColor, mxCellMarker
 getMaximumGraphBounds, mxGraph
 getMinimumSize
 getModel
 getMovableCells, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextLayerConnectedCells
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOffset
 getOpposites
 getOrigin, mxGraphModel
 getOriginForCell, mxMorphing
 getOuterHtml, mxUtils
 getOutgoingEdges
 getOutlineOffset, mxOutline
 getOverlap, mxGraph
 getOverlayPane, mxGraphView
 getParent
 getParentOffset, mxGraphLayout
 getParentPath, mxCellPath
 getParents, mxGraphModel
 getParentSize, mxStackLayout
 getPath, mxPath
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint
 getPointForEvent
 getPreferredPageSize, mxGraph
 getPreferredSizeForCell, mxGraph
 getPrettyXML, mxUtils
 getPreviewBounds, mxGraphHandler
 getPreviewPoints
 getPreviewTerminalState, mxEdgeHandler
 getPreviousLayerConnectedCells
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRankValue, mxGraphHierarchyNode
 getRelativePoint, mxGraphView
 getRemovedCellsForChanges, mxGraph
 getRoot, mxGraphModel
 getRootTitle, mxEditor
 getRotatedPoint, mxUtils
 getRotation, mxShape
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScale, mxGraphView
 getScaleForPageCount, mxUtils
 getScrollOrigin, mxUtils
 getSelectionBounds, mxVertexHandler
 getSelectionCell, mxGraph
 getSelectionCells, mxGraph
 getSelectionCellsForChanges, mxGraph
 getSelectionColor
 getSelectionCount, mxGraph
 getSelectionModel, mxGraph
 getSelectionPoints, mxEdgeHandler
 getSelectionStrokeWidth
 getShapeConstructor, mxCellRenderer
 getSizeForString, mxUtils
 getSnapToTerminalTolerance, mxEdgeHandler
 getSource
 getSourceContainerSize, mxOutline
 getSourcePerimeterPoint, mxConnectionHandler
 getSpacing, mxText
 getSpecialBundle, mxResources
 getStartSize, mxGraph
 getState
 getStates, mxGraphView
 getStateToMark, mxCellMarker
 getStatus, mxXmlRequest
 getStencil, mxStencilRegistry
 getStringValue, mxStylesheetCodec
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getSvgClip, mxText
 getSvgShadowTransform, mxShape
 getSwimlane, mxGraph
 getSwimlaneAt, mxGraph
 getTable, mxForm
 getTableSize, mxText
 getTargetPerimeterPoint, mxConnectionHandler
 getTemplate, mxEditor
 getTerminal
 getTerminalForPort, mxGraph
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getText, mxXmlRequest
 getTextContent, mxUtils
 getTextScale, mxCellRenderer
 getTitle, mxEditor
 getTolerance
 getTooltip, mxGraph
 getTooltipForCell, mxGraph
 getTooltipForNode, mxElbowEdgeHandler
 getTopmostCells, mxGraphModel
 getTranslate, mxGraphView
 getTranslateForRoot, mxGraph
 getUrlImage, mxEditor
 getUrlPost, mxEditor
 getValidState, mxCellMarker
 getValue
 getValues, mxDictionary
 getVerticalAlign, mxGraph
 getVerticalOffset, mxText
 getView, mxGraph
 getViewXml, mxUtils
 getVisibleTerminal
 getVisibleTerminalState, mxCellState
 getWindow, mxPrintPreview
 getX
 getXml
 getY
 glassSize, mxImageExport
 graph
 Graph appearance, mxGraph
 Graph behaviour, mxGraph
 Graph display, mxGraph
 Graph events, mxGraph
 graphBounds, mxGraphView
 graphContainsEvent, mxDragSource
 graphModelChanged
 graphRenderHint
 graphX, mxMouseEvent
 graphY, mxMouseEvent
 gridEnabled
 gridSize, mxGraph
 GROUP_CELLS
 groupCells
 Grouping, mxGraph
 groupPadding
 grow, mxRectangle
 guide, mxGraphHandler
 GUIDE_COLOR, mxConstants
 GUIDE_STROKEWIDTH, mxConstants
 guidesEnabled
-
mxCell.prototype.geometry
Holds the mxGeometry.
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
mxGraph.prototype.gestureEnabled
Specifies if the handleGesture method should be invoked.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
Specifies the event name for get.
Fires after a response was received in get.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxImageExport.prototype.getBackgroundBounds = function(state)
Draws the given state to the given canvas.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPanningHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state)
Returns the bounds to be used to draw the control (folding icon) of the given state.
getConverter: function()
Returns converter.
getConverter: function()
Returns converter.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
getDocument: function()
Returns the owner document of the root element.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell,
geometry)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientId = function(start,
end)
Creates a unique ID for the gradient of this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxImageExport.prototype.getImageBounds = function(state)
Draws the given state to the given canvas.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
mxText.prototype.getOffset = function(outerWidth,
outerHeight,
actualWidth,
actualHeight,
horizontal)
Returns the description of the space between the bounds size and the label size as an mxPoint.
getOffset: function(container)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOffsetSize = function()
Returns the actual size of the the viewport minus padding and border sizes.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxPath.prototype.getPath = function()
Returns string that represents the path in format.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxShape.prototype.getRotation = function()
Returns the current rotation including direction.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
getSizeForString: function(text,
fontSize,
fontFamily)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function(horizontal)
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxText.prototype.getSvgClip = function(svg,
x,
y,
w,
h)
Returns a new or existing SVG clip path which is a descendant of the given SVG node with a unique ID.
mxShape.prototype.getSvgShadowTransform = function(node,
shadow)
Returns the current transformation for SVG shadows.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxText.prototype.getTableSize = function(table)
Returns the actual size of the table.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxText.prototype.getVerticalOffset = function(offset)
Returns the factors for the offset to be added to the text vertical text rotation.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
mxImageExport.prototype.glassSize
Reference to the thread while the animation is running.
mxAutoSaveManager.prototype.graph
Reference to the enclosing mxGraph.
mxCellEditor.prototype.graph
Reference to the enclosing mxGraph.
mxCellHighlight.prototype.graph
Reference to the enclosing mxGraph.
mxCellMarker.prototype.graph
Reference to the enclosing mxGraph.
mxCellStatePreview.prototype.graph
Reference to the enclosing mxGraph.
mxConnectionHandler.prototype.graph
Reference to the enclosing mxGraph.
mxConstraintHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEdgeHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEditor.prototype.graph
Holds a mxGraph for displaying the diagram.
mxGraphHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphLayout.prototype.graph
Reference to the enclosing mxGraph.
mxGraphSelectionModel.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graph
Reference to the enclosing mxGraph.
mxGuide.prototype.graph
Reference to the enclosing mxGraph instance.
mxKeyHandler.prototype.graph
Reference to the mxGraph associated with this handler.
mxLayoutManager.prototype.graph
Reference to the enclosing mxGraph.
mxMorphing.prototype.graph
Specifies the delay between the animation steps.
mxPanningHandler.prototype.graph
Reference to the enclosing mxGraph.
mxPrintPreview.prototype.graph
Reference to the mxGraph that should be previewed.
mxSelectionCellsHandler.prototype.graph
Reference to the enclosing mxGraph.
mxSpaceManager.prototype.graph
Reference to the enclosing mxGraph.
mxSwimlaneManager.prototype.graph
Reference to the enclosing mxGraph.
mxTooltipHandler.prototype.graph
Reference to the enclosing mxGraph.
mxVertexHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graphBounds
mxRectangle that caches the scales, translated bounds of the current view.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
mxEditor.prototype.graphRenderHint
Holds the render hint used for creating the graph in setGraphContainer.
Renderhint to be used for the outline graph.
mxMouseEvent.prototype.graphX
Holds the x-coordinate of the event in the graph.
mxMouseEvent.prototype.graphY
Holds the y-coordinate of the event in the graph.
mxDragSource.prototype.gridEnabled
Specifies if the grid should be allowed.
mxGraph.prototype.gridEnabled
Specifies if the grid is enabled.
mxGraph.prototype.gridSize
Specifies the grid size.
Specifies the event name for groupCells.
Fires between begin- and endUpdate in groupCells.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxCompactTreeLayout.prototype.groupPadding
Padding added to resized parents
mxCoordinateAssignment.prototype.groupPadding
Padding added to resized parents
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
mxGraphHandler.prototype.guide
Holds the mxGuide instance that is used for alignment.
Defines the color to be used for the guidelines in mxGraphHandler.
Defines the strokewidth to be used for the guidelines in mxGraphHandler.
mxDragSource.prototype.guidesEnabled
Specifies if mxGuide should be enabled.
mxGraphHandler.prototype.guidesEnabled
Specifies if other cells should be used for snapping the right, center or left side of the current selection.
+
mxCell.prototype.geometry
Holds the mxGeometry.
mxGraphModel.prototype.geometryForCellChanged = function(cell,
geometry)
Inner callback to update the mxGeometry of the given mxCell using mxCell.setGeometry and return the previous mxGeometry.
mxGraph.prototype.gestureEnabled
Specifies if the handleGesture method should be invoked.
mxDictionary.prototype.get = function(key)
Returns the value for the given key.
get: function(obj)
Returns the object id for the given object.
get: function(key,
params,
defaultValue)
Returns the value for the specified resource key.
mxSession.prototype.get = function(url,
onLoad,
onError)
Sends an asynchronous get request to the given URL, fires a get event and invokes the given onLoad function when a response is received.
get: function(url,
onload,
onerror)
Loads the specified URL asynchronously and invokes the given functions depending on the request status.
Specifies the event name for get.
Fires after a response was received in get.
mxConnectionHandler.prototype.getAlignmentTolerance = function()
Returns the tolerance for aligning new targets to sources.
mxGraph.prototype.getAllConnectionConstraints = function(terminal,
source)
Returns an array of all mxConnectionConstraints for the given terminal.
mxGraph.prototype.getAllEdges = function(cells)
Returns all edges connected to the given cells or its descendants.
mxCell.prototype.getAttribute = function(name,
defaultValue)
Returns the specified attribute from the user object if it is an XML node.
mxObjectCodec.prototype.getAttributeName = function(fieldname)
Returns the attributename for the given fieldname.
mxImageExport.prototype.getBackgroundBounds = function(state)
Draws the given state to the given canvas.
mxGraph.prototype.getBackgroundImage = function()
Returns the backgroundImage as an mxImage.
mxGraphView.prototype.getBackgroundPageBounds = function()
Returns the bounds for the background page.
mxGraphView.prototype.getBackgroundPane = function()
Returns the DOM node that represents the background layer.
getBaseUrl: function()
Returns baseUrl.
mxGraph.prototype.getBorder = function()
Returns the value of border.
mxGraph.prototype.getBorderSizes = function()
Returns the size of the border and padding on all four sides of the container.
getBoundingBox: function(rect,
rotation)
Returns the bounding box for the rotated rectangle.
mxGraph.prototype.getBoundingBoxFromGeometry = function(cells,
includeEdges)
Returns the bounding box for the geometries of the vertices in the given array of cells.
mxCellOverlay.prototype.getBounds = function(state)
Returns the bounds of the overlay for the given mxCellState as an mxRectangle.
mxGraphView.prototype.getBounds = function(cells)
Returns the bounds (on the screen) for the given array of mxCells.
mxGraph.prototype.getBoundsForGroup = function(group,
children,
border)
Returns the bounds to be used for the given group and children.
mxGraphView.prototype.getCanvas = function()
Returns the DOM node that contains the background-, draw- and overlaypane.
mxCellMarker.prototype.getCell = function(me)
Returns the mxCell for the given event and cell.
mxGraphModel.prototype.getCell = function(id)
Returns the mxCell for the specified Id or null if no cell can be found for the given Id.
mxMouseEvent.prototype.getCell = function()
Returns the mxCell in state is not null.
mxGraph.prototype.getCellAt = function(x,
y,
parent,
vertices,
edges)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy starting at the given parent.
mxGraph.prototype.getCellBounds = function(cell,
includeEdges,
includeDescendants)
Returns the scaled, translated bounds for the given cell.
Returns an mxRectangle that defines the bounds of the given cell or the bounding box if useBoundingBox is true.
mxGraph.prototype.getCellContainmentArea = function(cell)
Returns the mxRectangle inside which a cell is to be kept.
mxPanningHandler.prototype.getCellForPopupEvent = function(me)
Hook to return the cell for the mouse up popup trigger handling.
mxGraph.prototype.getCellGeometry = function(cell)
Returns the mxGeometry for the given cell.
mxGraph.prototype.getCellOverlays = function(cell)
Returns the array of mxCellOverlays for the given cell or null, if no overlays are defined.
mxGraph.prototype.getCells = function(x,
y,
width,
height,
parent,
result)
Returns the children of the given parent that are contained in the given rectangle (x, y, width, height).
mxGraphHandler.prototype.getCells = function(initialCell)
Returns the cells to be modified by this handler.
mxGraph.prototype.getCellsBeyond = function(x0,
y0,
parent,
rightHalfpane,
bottomHalfpane)
Returns the children of the given parent that are contained in the halfpane from the given point (x0, y0) rightwards and/or downwards depending on rightHalfpane and bottomHalfpane.
mxLayoutManager.prototype.getCellsForChange = function(change)
Executes all layouts which have been scheduled during the changes.
Returns the cells to be layouted for the given sequence of changes.
mxGraph.prototype.getCellsForGroup = function(cells)
Returns the cells with the same parent as the first cell in the given array.
mxGraphView.prototype.getCellStates = function(cells)
Returns the mxCellStates for the given array of mxCells.
mxSpaceManager.prototype.getCellsToShift = function(state)
Returns the cells to shift after a resize of the specified mxCellState.
mxGraph.prototype.getCellStyle = function(cell)
Returns an array of key, value pairs representing the cell style for the given cell.
mxStylesheet.prototype.getCellStyle = function(name,
defaultStyle)
Returns the cell style for the specified stylename or the given defaultStyle if no style can be found for the given stylename.
mxGraph.prototype.getCellValidationError = function(cell)
Checks all multiplicities that cannot be enforced while the graph is being modified, namely, all multiplicities that require a minimum of 1 edge.
mxRectangle.prototype.getCenterX = function ()
Returns the x-coordinate of the center point.
mxRectangle.prototype.getCenterY = function ()
Returns the y-coordinate of the center point.
mxCell.prototype.getChildAt = function(index)
Returns the child at the specified index.
mxGraphModel.prototype.getChildAt = function(cell,
index)
Returns the child of the given mxCell at the given index.
mxGraph.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the visible child vertices or edges in the given parent.
mxGraphModel.prototype.getChildCells = function(parent,
vertices,
edges)
Returns the children of the given cell that are vertices and/or edges depending on the arguments.
mxCell.prototype.getChildCount = function()
Returns the number of child cells.
mxGraphModel.prototype.getChildCount = function(cell)
Returns the number of children in the given cell.
mxGraph.prototype.getChildEdges = function(parent)
Returns the visible child edges of the given parent.
mxGraphModel.prototype.getChildEdges = function(parent)
Returns the child edges of the given parent.
getChildNodes: function(node,
nodeType)
Returns an array of child nodes that are of the given node type.
mxGraph.prototype.getChildOffsetForCell = function(cell)
Returns the offset to be used for the cells inside the given cell.
mxGraphModel.prototype.getChildren = function(cell)
Returns all children of the given mxCell as an array of mxCells.
mxGraph.prototype.getChildVertices = function(parent)
Returns the visible child vertices of the given parent.
mxGraphModel.prototype.getChildVertices = function(parent)
Returns the child vertices of the given parent.
getClientX: function(e)
Returns true if the meta key is pressed for the given event.
getClientY: function(e)
Returns true if the meta key is pressed for the given event.
mxGraph.prototype.getCloneableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
getCodec: function(ctor)
Returns a codec that handles objects that are constructed using the given constructor.
getColor: function(array,
key,
defaultValue)
Returns the color value for the given key in the given associative array or the given default value if the value is null.
mxConnectionHandler.prototype.getConnectImage = function(state)
Hook to return the mxImage used for the connection icon of the given mxCellState.
mxGraph.prototype.getConnectionConstraint = function(edge,
terminal,
source)
Returns an mxConnectionConstraint that describes the given connection point.
mxGraph.prototype.getConnectionPoint = function(vertex,
constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
mxGraph.prototype.getConnections = function(cell,
parent)
Returns all visible edges connected to the given cell without loops.
mxGraphModel.prototype.getConnections = function(cell)
Returns all edges of the given cell without loops.
mxGraphLayout.prototype.getConstraint = function(key,
cell,
edge,
source)
Returns the constraint for the given key and cell.
mxCellRenderer.prototype.getControlBounds = function(state)
Returns the bounds to be used to draw the control (folding icon) of the given state.
getConverter: function()
Returns converter.
getConverter: function()
Returns converter.
mxGraphHierarchyEdge.prototype.getCoreCell = function()
Gets the first core edge associated with this wrapper
mxGraphHierarchyNode.prototype.getCoreCell = function()
Gets the core vertex associated with this wrapper
mxGraph.prototype.getCurrentRoot = function()
Returns the current root of the displayed cell hierarchy.
getCurrentStyle: function()
Returns the current style of the specified element.
mxCellEditor.prototype.getCurrentValue = function()
Returns the current editing value.
mxShape.prototype.getCursor = function()
Returns the current cursor.
mxElbowEdgeHandler.prototype.getCursorForBend = function()
Returns the cursor to be used for the bend.
mxGraph.prototype.getCursorForCell = function(cell)
Returns the cursor value to be used for the CSS of the shape for the given cell.
getDefaultBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxStylesheet.prototype.getDefaultEdgeStyle = function()
Sets the default style for edges.
mxGraph.prototype.getDefaultParent = function()
Returns defaultParent or mxGraphView.currentRoot or the first child child of mxGraphModel.root if both are null.
mxStylesheet.prototype.getDefaultVertexStyle = function()
Returns the default style for vertices.
mxGraph.prototype.getDeletableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxMorphing.prototype.getDelta = function(state)
Returns the vector between the current rendered state and the future location of the state after the display will be updated.
mxGraphModel.prototype.getDescendants = function(parent)
Returns all descendants of the given cell and the cell itself in an array.
mxGraphModel.prototype.getDirectedEdgeCount = function(cell,
outgoing,
ignoredEdge)
Returns the number of incoming or outgoing edges, ignoring the given edge.
Returns the string that should go before the HTML tag in the print preview page.
getDocument: function()
Returns the owner document of the root element.
mxXmlRequest.prototype.getDocumentElement = function()
Returns the document element of the response XML document.
mxDivResizer.prototype.getDocumentHeight = function()
Hook for subclassers to return the height of the document (without scrollbars).
mxDivResizer.prototype.getDocumentWidth = function()
Hook for subclassers to return the width of the document (without scrollbars).
mxGraphView.prototype.getDrawPane = function()
Returns the DOM node that represents the main drawing layer.
mxDragSource.prototype.getDropTarget = function(graph,
x,
y)
Returns the drop target for the given graph and coordinates.
mxGraph.prototype.getDropTarget = function(cells,
evt,
cell)
Returns the given cell if it is a drop target for the given cells or the nearest ancestor that may be used as a drop target for the given cells.
mxCell.prototype.getEdgeAt = function(index)
Returns the edge at the specified index in edges.
mxGraphModel.prototype.getEdgeAt = function(cell,
index)
Returns the edge of cell at the given index.
mxConnectionHandler.prototype.getEdgeColor = function(valid)
Returns the color used to draw the preview edge.
mxCell.prototype.getEdgeCount = function()
Returns the number of edges in the edge array.
mxGraphModel.prototype.getEdgeCount = function(cell)
Returns the number of distinct edges connected to the given cell.
mxParallelEdgeLayout.prototype.getEdgeId = function(edge)
Returns a unique ID for the given edge.
mxCell.prototype.getEdgeIndex = function(edge)
Returns the index of the specified edge in edges.
mxGraph.prototype.getEdges = function(cell,
parent,
incoming,
outgoing,
includeLoops,
recurse)
Returns the incoming and/or outgoing edges for the given cell.
mxGraphModel.prototype.getEdges = function(cell,
incoming,
outgoing,
includeLoops)
Returns all distinct edges connected to this cell as a new array of mxCells.
mxHierarchicalLayout.prototype.getEdges = function(cell)
Returns the connected edges for the given cell.
mxGraph.prototype.getEdgesBetween = function(source,
target,
directed)
Returns the edges between the given source and target.
mxGraphModel.prototype.getEdgesBetween = function(source,
target,
directed)
Returns all edges between the given source and target pair.
mxEditor.prototype.getEdgeStyle = function ()
Returns a string identifying the style of new edges.
mxGraphView.prototype.getEdgeStyle = function(edge,
points,
source,
target)
Returns the edge style function to be used to render the given edge state.
mxGraph.prototype.getEdgeValidationError = function(edge,
source,
target)
Returns the validation error message to be displayed when inserting or changing an edges’ connectivity.
mxConnectionHandler.prototype.getEdgeWidth = function(valid)
Returns the width used to draw the preview edge.
mxCellEditor.prototype.getEditingCell = function ()
Returns the cell that is currently being edited or null if no cell is being edited.
mxGraph.prototype.getEditingValue = function(cell,
evt)
Returns the initial value for in-place editing.
mxCellEditor.prototype.getEditorBounds = function(state)
Returns the mxRectangle that defines the bounds of the editor.
mxWindow.prototype.getElement = function()
Returuns the outermost DOM node that makes up the window.
mxCodec.prototype.getElementById = function(id,
attr)
Returns the element with the given ID from document.
mxCellEditor.prototype.getEmptyLabelText = function (cell)
Returns the initial label value to be used of the label of the given cell is empty.
mxMouseEvent.prototype.getEvent = function()
Returns evt.
mxEventSource.prototype.getEventSource = function()
Returns eventSource.
mxGraph.prototype.getExportableCells = function(cells)
Returns the cells which may be exported in the given array of cells.
mxObjectCodec.prototype.getFieldName = function(attributename)
Returns the fieldname for the given attributename.
mxObjectCodec.prototype.getFieldTemplate = function(obj,
fieldname,
child)
Returns the template instance for the given field.
mxGraphSelectionModel.prototype.getFirstSelectableCell = function(cells)
Returns the first selectable cell in the given array of cells.
mxGraph.prototype.getFoldableCells = function(cells,
collapse)
Returns the cells which are movable in the given array of cells.
mxGraph.prototype.getFoldingImage = function(state)
Returns the mxImage used to display the collapsed state of the specified cell state.
mxKeyHandler.prototype.getFunction = function(evt)
Returns the function associated with the given key event or null if no function is associated with the given event.
getFunctionName: function(f)
Returns the name for the given function.
mxGraphAbstractHierarchyCell.prototype.getGeneralPurposeVariable = function(
   layer
)
Gets the value of temp for the specified layer
mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxGraphHierarchyNode.prototype.getGeneralPurposeVariable = function(layer)
Gets the value of temp for the specified layer
mxCell.prototype.getGeometry = function()
Returns the mxGeometry that describes the geometry.
mxGraphModel.prototype.getGeometry = function(cell,
geometry)
Returns the mxGeometry of the given mxCell.
mxShape.prototype.getGradientId = function(start,
end)
Creates a unique ID for the gradient of this shape.
mxGraphLayout.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxLayoutManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSpaceManager.prototype.getGraph = function()
Returns the graph that this layout operates on.
mxSwimlaneManager.prototype.getGraph = function()
Returns the graph that this manager operates on.
mxGraph.prototype.getGraphBounds = function()
Returns the bounds of the visible graph.
mxGraphView.prototype.getGraphBounds = function()
Returns graphBounds.
mxDragSource.prototype.getGraphForEvent = function(evt)
Returns the graph for the given mouse event.
mxMouseEvent.prototype.getGraphX = function()
Returns graphX.
mxMouseEvent.prototype.getGraphY = function()
Returns graphY.
mxGraph.prototype.getGridSize = function()
Returns gridSize.
mxGraphHandler.prototype.getGuideStates = function()
Creates an array of cell states which should be used as guides.
mxGuide.prototype.getGuideTolerance = function()
Returns the tolerance for the guides.
mxEdgeHandler.prototype.getHandleFillColor = function(index)
Returns the fillcolor for the handle at the given index.
mxEdgeHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxVertexHandler.prototype.getHandleForEvent = function(me)
Returns the index of the handle for the given event.
mxSelectionCellsHandler.prototype.getHandler = function(cell)
Returns the handler for the given cell.
mxCellMarker.prototype.getHotspot = function()
Returns the hotspot.
mxCell.prototype.getId = function()
Returns the Id of the cell as a string.
mxCodec.prototype.getId = function(obj)
Returns the ID of the specified object.
mxGraph.prototype.getImage = function(state)
Returns the image URL for the given cell state.
mxImageBundle.prototype.getImage = function(key)
Returns the value for the given key.
mxImageExport.prototype.getImageBounds = function(state)
Draws the given state to the given canvas.
mxConstraintHandler.prototype.getImageForConstraint = function(state,
constraint,
point)
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getImageFromBundles = function(key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
mxGraph.prototype.getImportableCells = function(cells)
Returns the cells which may be imported in the given array of cells.
mxGraph.prototype.getIncomingEdges = function(cell,
parent)
Returns the visible incoming edges for the given cell.
mxGraphModel.prototype.getIncomingEdges = function(cell)
Returns the incoming edges of the given cell without loops.
mxCell.prototype.getIndex = function(child)
Returns the index of the specified child in the child array.
mxGraph.prototype.getIndicatorColor = function(state)
Returns the indicator color for the given cell state.
mxGraph.prototype.getIndicatorGradientColor = function(state)
Returns the indicator gradient color for the given cell state.
mxGraph.prototype.getIndicatorImage = function(state)
Returns the indicator image for the given cell state.
mxGraph.prototype.getIndicatorShape = function(state)
Returns the indicator shape for the given cell state.
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
Hook to return initial cell for the given event.
mxCellEditor.prototype.getInitialValue = function(state,
trigger)
Gets the initial editing value for the given cell.
getInnerHtml: function()
Returns the inner HTML for the given node as a string or an empty string if no node was specified.
mxDictionary.prototype.getKeys = function()
Returns all keys as an array.
mxGraph.prototype.getLabel = function(cell)
Returns a string or DOM node that represents the label for the given cell.
mxCellRenderer.prototype.getLabelBounds = function(state)
Returns the bounds to be used to draw the label of the given state.
mxCellRenderer.prototype.getLabelValue = function(state)
Returns the value to be used for the label.
mxLayoutManager.prototype.getLayout = function(parent)
Returns the layout to be executed for the given graph and parent.
getMainEvent: function(e)
Returns the touch or mouse event that contains the mouse coordinates.
mxCellMarker.prototype.getMarkedState = function()
Returns the markedState.
mxCellMarker.prototype.getMarkerColor = function(evt,
state,
isValid)
Returns the valid- or invalidColor depending on the value of isValid.
mxGraph.prototype.getMaximumGraphBounds = function()
Returns the bounds inside which the diagram should be kept as an mxRectangle.
mxCellEditor.prototype.getMinimumSize = function(state)
Returns the minimum width and height for editing the given state.
mxWindow.prototype.getMinimumSize = function()
Returns an mxRectangle that specifies the size for the minimized window.
mxGraph.prototype.getModel = function()
Returns the mxGraphModel that contains the cells.
mxHierarchicalLayout.prototype.getModel = function()
Returns the internal mxGraphHierarchyModel for this layout algorithm.
mxGraph.prototype.getMovableCells = function(cells)
Returns the cells which are movable in the given array of cells.
mxEventObject.prototype.getName = function()
Returns name.
mxObjectCodec.prototype.getName = function()
Returns the name used for the nodenames and lookup of the codec when classes are encoded and nodes are decoded.
getName: function(value)
Returns the name for the given value.
mxGraphModel.prototype.getNearestCommonAncestor = function(cell1,
cell2)
Returns the nearest common ancestor for the specified cells.
mxGraphAbstractHierarchyCell.prototype.getNextLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphHierarchyNode.prototype.getNextLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer up
mxGraphView.prototype.getNextPoint = function(edge,
opposite,
source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
getNumber: function(array,
key,
defaultValue)
Returns the numeric value for the given key in the given associative array or the given default value (or 0) if the value is null.
mxCodec.prototype.getObject = function(id)
Returns the decoded object for the element with the specified ID in document.
mxText.prototype.getOffset = function(outerWidth,
outerHeight,
actualWidth,
actualHeight,
horizontal)
Returns the description of the space between the bounds size and the label size as an mxPoint.
getOffset: function(container)
Returns the offset for the specified container as an mxPoint.
mxGraph.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all distinct visible opposite cells for the specified terminal on the given edges.
mxGraphModel.prototype.getOpposites = function(edges,
terminal,
sources,
targets)
Returns all opposite vertices wrt terminal for the given edges, only returning sources and/or targets as specified.
mxGraphModel.prototype.getOrigin = function(cell)
Returns the absolute, accumulated origin for the children inside the given parent as an mxPoint.
mxMorphing.prototype.getOriginForCell = function(cell)
Returns the top, left corner of the given cell.
getOuterHtml: function()
Returns the outer HTML for the given node as a string or an empty string if no node was specified.
mxGraph.prototype.getOutgoingEdges = function(cell,
parent)
Returns the visible outgoing edges for the given cell.
mxGraphModel.prototype.getOutgoingEdges = function(cell)
Returns the outgoing edges of the given cell without loops.
mxOutline.prototype.getOutlineOffset = function(scale)
Returns the offset for drawing the outline graph.
mxGraph.prototype.getOverlap = function(cell)
Returns a decimal number representing the amount of the width and height of the given cell that is allowed to overlap its parent.
mxGraphView.prototype.getOverlayPane = function()
Returns the DOM node that represents the topmost drawing layer.
mxCell.prototype.getParent = function()
Returns the cell’s parent.
mxGraphModel.prototype.getParent = function(cell)
Returns the parent of the given cell.
mxGraphLayout.prototype.getParentOffset = function(parent)
Determines the offset of the given parent to the parent of the layout
getParentPath: function(path)
Returns the path for the parent of the cell represented by the given path.
mxGraphModel.prototype.getParents = function(cells)
Returns an array that represents the set (no duplicates) of all parents for the given array of cells.
mxStackLayout.prototype.getParentSize = function(parent)
Returns the size for the parent container or the size of the graph container if the parent is a layer or the root of the model.
mxPath.prototype.getPath = function()
Returns string that represents the path in format.
mxCellState.prototype.getPerimeterBounds = function (border,
bounds)
Returns the mxRectangle that should be used as the perimeter of the cell.
mxGraphView.prototype.getPerimeterBounds = function(terminal,
border)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
mxGraphView.prototype.getPerimeterFunction = function(state)
Returns the perimeter function for the given state.
mxGraphView.prototype.getPerimeterPoint = function(terminal,
next,
orthogonal,
border)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
mxGraphView.prototype.getPoint = function(state,
geometry)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
mxRectangle.prototype.getPoint = function()
Returns the top, left corner as a new mxPoint.
mxEdgeHandler.prototype.getPointForEvent = function(me)
Returns the point for the given event.
mxGraph.prototype.getPointForEvent = function(evt,
addOffset)
Returns an mxPoint representing the given event in the unscaled, non-translated coordinate space of container and applies the grid.
mxGraph.prototype.getPreferredPageSize = function(bounds,
width,
height)
Returns the preferred size of the background page if preferPageSize is true.
mxGraph.prototype.getPreferredSizeForCell = function(cell)
Returns the preferred width and height of the given mxCell as an mxRectangle.
Returns a pretty printed string that represents the XML tree for the given node.
mxGraphHandler.prototype.getPreviewBounds = function(cells)
Returns the mxRectangle used as the preview bounds for moving the given cells.
mxEdgeSegmentHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewPoints = function(point)
Updates the given preview state taking into account the state of the constraint handler.
mxEdgeHandler.prototype.getPreviewTerminalState = function(me)
Updates the given preview state taking into account the state of the constraint handler.
mxGraphAbstractHierarchyCell.prototype.getPreviousLayerConnectedCells = function(
   layer
)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxGraphHierarchyNode.prototype.getPreviousLayerConnectedCells = function(layer)
Returns the cells this cell connects to on the next layer down
mxEventObject.prototype.getProperties = function()
Returns properties.
mxEventObject.prototype.getProperty = function(key)
Returns the property for the given key.
mxGraphHierarchyNode.prototype.getRankValue = function(layer)
Returns the integer value of the layer that this node resides in
mxGraphView.prototype.getRelativePoint = function(edgeState,
x,
y)
Gets the relative point that describes the given, absolute label position for the given edge state.
mxGraph.prototype.getRemovedCellsForChanges = function(changes)
Returns the cells that have been removed from the model.
mxGraphModel.prototype.getRoot = function(cell)
Returns the root of the model or the topmost parent of the given cell.
mxEditor.prototype.getRootTitle = function ()
Returns the string value of the root cell in mxGraph.model.
getRotatedPoint: function(pt,
cos,
sin,
c)
Rotates the given point by the given cos and sin.
mxShape.prototype.getRotation = function()
Returns the current rotation including direction.
mxGraphView.prototype.getRoutingCenterX = function (state)
Returns the x-coordinate of the center point for automatic routing.
mxGraphView.prototype.getRoutingCenterY = function (state)
Returns the y-coordinate of the center point for automatic routing.
mxGraphView.prototype.getScale = function()
Returns the scale.
getScaleForPageCount: function(pageCount,
graph,
pageFormat,
border)
Returns the scale to be used for printing the graph with the given bounds across the specifies number of pages with the given format.
getScrollOrigin: function(node)
Returns the top, left corner of the viewrect as an mxPoint.
mxVertexHandler.prototype.getSelectionBounds = function(state)
Returns the mxRectangle that defines the bounds of the selection border.
mxGraph.prototype.getSelectionCell = function()
Returns the first cell from the array of selected mxCells.
mxGraph.prototype.getSelectionCells = function()
Returns the array of selected mxCells.
mxGraph.prototype.getSelectionCellsForChanges = function(changes)
Returns the cells to be selected for the given array of changes.
mxEdgeHandler.prototype.getSelectionColor = function()
Returns mxConstants.EDGE_SELECTION_COLOR.
mxVertexHandler.prototype.getSelectionColor = function()
Returns mxConstants.VERTEX_SELECTION_COLOR.
mxGraph.prototype.getSelectionCount = function()
Returns the number of selected cells.
mxGraph.prototype.getSelectionModel = function()
Returns the mxGraphSelectionModel that contains the selection.
mxEdgeHandler.prototype.getSelectionPoints = function(state)
Returns the list of points that defines the selection stroke.
mxEdgeHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.EDGE_SELECTION_STROKEWIDTH.
mxVertexHandler.prototype.getSelectionStrokeWidth = function()
Returns mxConstants.VERTEX_SELECTION_STROKEWIDTH.
mxCellRenderer.prototype.getShapeConstructor = function(state)
Returns the constructor to be used for creating the shape.
getSizeForString: function(text,
fontSize,
fontFamily)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
mxEdgeHandler.prototype.getSnapToTerminalTolerance = function()
Returns the tolerance for the guides.
getSource: function(evt)
Returns the event’s target or srcElement depending on the browser.
mxMouseEvent.prototype.getSource = function()
Returns the target DOM element using mxEvent.getSource for evt.
mxOutline.prototype.getSourceContainerSize = function()
Returns the size of the source container.
mxConnectionHandler.prototype.getSourcePerimeterPoint = function(state,
next,
me)
Hook to update the icon position(s) based on a mouseOver event.
mxText.prototype.getSpacing = function(horizontal)
Returns the spacing as an mxPoint.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxGraph.prototype.getStartSize = function(swimlane)
Returns the start size of the given swimlane, that is, the width or height of the part that contains the title, depending on the horizontal style.
mxCellMarker.prototype.getState = function(me)
Uses getCell, getStateToMark and intersects to return the mxCellState for the given mxMouseEvent.
mxGraphView.prototype.getState = function(cell,
create)
Returns the mxCellState for the given cell.
mxMouseEvent.prototype.getState = function()
Returns state.
mxGraphView.prototype.getStates = function()
Returns states.
mxCellMarker.prototype.getStateToMark = function(state)
Returns the mxCellState to be marked for the given mxCellState under the mouse.
mxXmlRequest.prototype.getStatus = function()
Returns the status as a number, eg.
getStencil: function(name)
Returns the mxStencil for the given name.
codec.getStringValue = function(key,
value)
Returns the string for encoding the given value.
mxCell.prototype.getStyle = function()
Returns a string that describes the style.
mxGraphModel.prototype.getStyle = function(cell)
Returns the style of the given mxCell.
getStylename: function(style)
Returns the stylename in a style of the form [(stylename|key=value);] or an empty string if the given style does not contain a stylename.
getStylenames: function(style)
Returns the stylenames in a style of the form [(stylename|key=value);] or an empty array if the given style does not contain any stylenames.
mxGraph.prototype.getStylesheet = function()
Returns the mxStylesheet that defines the style.
mxText.prototype.getSvgClip = function(svg,
x,
y,
w,
h)
Returns a new or existing SVG clip path which is a descendant of the given SVG node with a unique ID.
mxShape.prototype.getSvgShadowTransform = function(node,
shadow)
Returns the current transformation for SVG shadows.
mxGraph.prototype.getSwimlane = function(cell)
Returns the nearest ancestor of the given cell which is a swimlane, or the given cell, if it is itself a swimlane.
mxGraph.prototype.getSwimlaneAt = function (x,
y,
parent)
Returns the bottom-most swimlane that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
mxForm.prototype.getTable = function()
Returns the table that contains this form.
mxText.prototype.getTableSize = function(table)
Returns the actual size of the table.
mxConnectionHandler.prototype.getTargetPerimeterPoint = function(state,
me)
Returns the perimeter point for the given target state.
mxEditor.prototype.getTemplate = function (name)
Returns the template for the given name.
mxCell.prototype.getTerminal = function(source)
Returns the source or target terminal.
mxGraphModel.prototype.getTerminal = function(edge,
isSource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
mxGraph.prototype.getTerminalForPort = function(cell,
source)
Returns the terminal to be used for a given port.
mxGeometry.prototype.getTerminalPoint = function(isSource)
Returns the mxPoint representing the source or target point of this edge.
mxGraphView.prototype.getTerminalPort = function(state,
terminal,
source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
mxXmlRequest.prototype.getText = function()
Returns the response as a string.
getTextContent: function(node)
Returns the text content of the specified node.
mxCellRenderer.prototype.getTextScale = function(state)
Returns the scaling used for the label of the given state
mxEditor.prototype.getTitle = function ()
Returns the string value for the current root of the diagram.
mxConstraintHandler.prototype.getTolerance = function()
Returns the tolerance to be used for intersecting connection points.
mxGraph.prototype.getTolerance = function()
Returns tolerance.
mxGraph.prototype.getTooltip = function(state,
node,
x,
y)
Returns the string or DOM node that represents the tooltip for the given state, node and coordinate pair.
mxGraph.prototype.getTooltipForCell = function(cell)
Returns the string or DOM node to be used as the tooltip for the given cell.
mxElbowEdgeHandler.prototype.getTooltipForNode = function(node)
Returns the tooltip for the given node.
mxGraphModel.prototype.getTopmostCells = function(cells)
Returns the topmost cells of the hierarchy in an array that contains no descendants for each mxCell that it contains.
mxGraphView.prototype.getTranslate = function()
Returns the translate.
mxGraph.prototype.getTranslateForRoot = function(cell)
Returns the translation to be used if the given cell is the root cell as an mxPoint.
mxEditor.prototype.getUrlImage = function ()
Returns the URL to create the image with.
mxEditor.prototype.getUrlPost = function ()
Returns the URL to post the diagram to.
mxCellMarker.prototype.getValidState = function()
Returns the validState.
mxCell.prototype.getValue = function()
Returns the user object of the cell.
mxGraphModel.prototype.getValue = function(cell)
Returns the user object of the given mxCell using mxCell.getValue.
getValue: function(name)
Returns the value associated with the given name.
getValue: function(array,
key,
defaultValue)
Returns the value for the given key in the given associative array or the given default value if the value is null.
mxDictionary.prototype.getValues = function()
Returns all values as an array.
mxGraph.prototype.getVerticalAlign = function(state)
Returns the vertical alignment for the given cell state.
mxText.prototype.getVerticalOffset = function(offset)
Returns the factors for the offset to be added to the text vertical text rotation.
mxGraph.prototype.getView = function()
Returns the mxGraphView that contains the mxCellStates.
getViewXml: function(graph,
scale,
cells,
x0,
y0)
mxCellState.prototype.getVisibleTerminal = function (source)
Returns the visible source or target terminal cell.
mxGraphView.prototype.getVisibleTerminal = function(edge,
source)
Returns the nearest ancestor terminal that is visible.
mxCellState.prototype.getVisibleTerminalState = function (source)
Returns the visible source or target terminal state.
mxPrintPreview.prototype.getWindow = function()
Returns wnd.
mxGraphAbstractHierarchyCell.prototype.getX = function(layer)
Gets the value of x on the specified layer
mxMouseEvent.prototype.getX = function()
Returns evt.clientX.
mxWindow.prototype.getX = function()
Returns the current position on the x-axis.
getXml: function(node,
linefeed)
Returns the XML content of the specified node.
mxXmlRequest.prototype.getXml = function()
Returns the response as an XML document.
mxMouseEvent.prototype.getY = function()
Returns evt.clientY.
mxWindow.prototype.getY = function()
Returns the current position on the y-axis.
mxImageExport.prototype.glassSize
Reference to the thread while the animation is running.
mxAutoSaveManager.prototype.graph
Reference to the enclosing mxGraph.
mxCellEditor.prototype.graph
Reference to the enclosing mxGraph.
mxCellHighlight.prototype.graph
Reference to the enclosing mxGraph.
mxCellMarker.prototype.graph
Reference to the enclosing mxGraph.
mxCellStatePreview.prototype.graph
Reference to the enclosing mxGraph.
mxConnectionHandler.prototype.graph
Reference to the enclosing mxGraph.
mxConstraintHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEdgeHandler.prototype.graph
Reference to the enclosing mxGraph.
mxEditor.prototype.graph
Holds a mxGraph for displaying the diagram.
mxGraphHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphLayout.prototype.graph
Reference to the enclosing mxGraph.
mxGraphSelectionModel.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graph
Reference to the enclosing mxGraph.
mxGuide.prototype.graph
Reference to the enclosing mxGraph instance.
mxKeyHandler.prototype.graph
Reference to the mxGraph associated with this handler.
mxLayoutManager.prototype.graph
Reference to the enclosing mxGraph.
mxMorphing.prototype.graph
Specifies the delay between the animation steps.
mxPanningHandler.prototype.graph
Reference to the enclosing mxGraph.
mxPrintPreview.prototype.graph
Reference to the mxGraph that should be previewed.
mxSelectionCellsHandler.prototype.graph
Reference to the enclosing mxGraph.
mxSpaceManager.prototype.graph
Reference to the enclosing mxGraph.
mxSwimlaneManager.prototype.graph
Reference to the enclosing mxGraph.
mxTooltipHandler.prototype.graph
Reference to the enclosing mxGraph.
mxVertexHandler.prototype.graph
Reference to the enclosing mxGraph.
mxGraphView.prototype.graphBounds
mxRectangle that caches the scales, translated bounds of the current view.
mxDragSource.prototype.graphContainsEvent = function(graph,
evt)
Returns true if the given graph contains the given event.
mxAutoSaveManager.prototype.graphModelChanged = function(changes)
Invoked when the graph model has changed.
mxGraph.prototype.graphModelChanged = function(changes)
Called when the graph model changes.
mxEditor.prototype.graphRenderHint
Holds the render hint used for creating the graph in setGraphContainer.
Renderhint to be used for the outline graph.
mxMouseEvent.prototype.graphX
Holds the x-coordinate of the event in the graph.
mxMouseEvent.prototype.graphY
Holds the y-coordinate of the event in the graph.
mxDragSource.prototype.gridEnabled
Specifies if the grid should be allowed.
mxGraph.prototype.gridEnabled
Specifies if the grid is enabled.
mxGraph.prototype.gridSize
Specifies the grid size.
Specifies the event name for groupCells.
Fires between begin- and endUpdate in groupCells.
mxEditor.prototype.groupCells = function ()
Invokes createGroup to create a new group cell and the invokes mxGraph.groupCells, using the grid size of the graph as the spacing in the group’s content area.
mxGraph.prototype.groupCells = function(group,
border,
cells)
Adds the cells into the given group.
mxCompactTreeLayout.prototype.groupPadding
Padding added to resized parents
mxCoordinateAssignment.prototype.groupPadding
Padding added to resized parents
mxRectangle.prototype.grow = function(amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
mxGraphHandler.prototype.guide
Holds the mxGuide instance that is used for alignment.
Defines the color to be used for the guidelines in mxGraphHandler.
Defines the strokewidth to be used for the guidelines in mxGraphHandler.
mxDragSource.prototype.guidesEnabled
Specifies if mxGuide should be enabled.
mxGraphHandler.prototype.guidesEnabled
Specifies if other cells should be used for snapping the right, center or left side of the current selection.
diff --git a/docs/js-api/index/General8.html b/docs/js-api/index/General8.html index 62ae7a992..b2c34b1fc 100644 --- a/docs/js-api/index/General8.html +++ b/docs/js-api/index/General8.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 h0, mxStencil
 HANDLE_FILLCOLOR, mxConstants
 HANDLE_SIZE, mxConstants
 HANDLE_STROKECOLOR, mxConstants
 handleGesture, mxGraph
 handleImage
 handleMouseOut, mxPanningManager
 handler, mxDefaultKeyHandler
 handlers, mxSelectionCellsHandler
 handlingResize, mxDivResizer
 hashCode, mxGraphHierarchyNode
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 height
 help, mxEditor
 helpResource, mxEditor
 helpWidth, mxEditor
 helpWindowImage, mxEditor
 hide
 HIDE, mxEvent
 hideMenu, mxPopupMenu
 hideOnHover, mxTooltipHandler
 hideProperties, mxEditor
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 HIGHLIGHT_COLOR, mxConstants
 HIGHLIGHT_STROKEWIDTH, mxConstants
 highlightColor, mxConstraintHandler
 highlightDropTargets, mxDragSource
 highlightEnabled, mxGraphHandler
 history, mxUndoManager
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontal
 horizontalFlow, mxEditor
 horizontalLayout, mxCompactTreeLayout
 hotspot, mxCellMarker
 hotspotEnabled, mxCellMarker
 htmlEntities, mxUtils
 htmlLabels, mxGraph
 htmlPreview, mxGraphHandler
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 h0, mxStencil
 HANDLE_FILLCOLOR, mxConstants
 HANDLE_SIZE, mxConstants
 HANDLE_STROKECOLOR, mxConstants
 handleGesture, mxGraph
 handleImage
 handleMouseOut, mxPanningManager
 handler, mxDefaultKeyHandler
 handlers, mxSelectionCellsHandler
 handlingResize, mxDivResizer
 hashCode, mxGraphHierarchyNode
 hasScrollbars, mxUtils
 hasValidState, mxCellMarker
 height
 help, mxEditor
 helpResource, mxEditor
 helpWidth, mxEditor
 helpWindowImage, mxEditor
 hide
 HIDE, mxEvent
 hideMenu, mxPopupMenu
 hideOnHover, mxTooltipHandler
 hideProperties, mxEditor
 hideSubmenu, mxPopupMenu
 hideTooltip, mxTooltipHandler
 HIGHLIGHT_COLOR, mxConstants
 HIGHLIGHT_STROKEWIDTH, mxConstants
 highlightColor, mxConstraintHandler
 highlightDropTargets, mxDragSource
 highlightEnabled, mxGraphHandler
 history, mxUndoManager
 hitsSwimlaneContent, mxGraph
 home, mxGraph
 horizontal
 horizontalFlow, mxEditor
 horizontalLayout, mxCompactTreeLayout
 hotspot, mxCellMarker
 hotspotEnabled, mxCellMarker
 htmlEntities, mxUtils
 htmlLabels, mxGraph
 htmlPreview, mxGraphHandler
-
mxStencil.prototype.h0
Holds the height of the shape.
Defines the color to be used for the handle fill color.
Defines the default size for handles.
Defines the color to be used for the handle stroke color.
mxGraph.prototype.handleGesture = function(state,
evt)
Invokes if a gesture event has been detected on a cell state.
mxEdgeHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxVertexHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxPanningManager.prototype.handleMouseOut
Specifies if mouse events outside of the component should be handled.
mxDefaultKeyHandler.prototype.handler
Holds the mxKeyHandler for key event handling.
mxSelectionCellsHandler.prototype.handlers
mxDictionary that maps from cells to handlers.
Boolean specifying if the width should be updated.
mxGraphHierarchyNode.prototype.hashCode
Assigns a unique hashcode for each node.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxGraphAbstractHierarchyCell.prototype.height
The height of this cell
mxImage.prototype.height
Integer that specifies the height of the image.
mxRectangle.prototype.height
Holds the height of the rectangle.
mxEditor.prototype.help
Holds the mxWindow created in showHelp.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.helpWidth
Specifies the width of the help window in pixels.
mxEditor.prototype.helpWindowImage
Icon for the help window.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
Specifies the event name for hide.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxTooltipHandler.prototype.hideOnHover
Specifies if the tooltip should be hidden if the mouse is moved over the current cell.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
Defines the color to be used for the cell highlighting.
Defines the strokewidth to be used for the highlights.
mxConstraintHandler.prototype.highlightColor
Specifies the color for the highlight.
mxDragSource.prototype.highlightDropTargets
Specifies if drop targets should be highlighted.
mxGraphHandler.prototype.highlightEnabled
Specifies if drop targets under the mouse should be enabled.
mxUndoManager.prototype.history
Array that contains the steps of the command history.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontal
Specifies the orientation of the layout.
mxGuide.prototype.horizontal
Specifies if horizontal guides are enabled.
mxPartitionLayout.prototype.horizontal
Boolean indicating the direction in which the space is partitioned.
mxStackLayout.prototype.horizontal
Specifies the orientation of the layout.
mxSwimlaneManager.prototype.horizontal
Specifies the orientation of the swimlanes.
mxEditor.prototype.horizontalFlow
Specifies the direction of the flow in the diagram.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
mxCellMarker.prototype.hotspot
Specifies the portion of the width and height that should trigger a highlight.
mxCellMarker.prototype.hotspotEnabled
Specifies if the hotspot is enabled.
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
mxGraph.prototype.htmlLabels
Specifies the return value for isHtmlLabel.
mxGraphHandler.prototype.htmlPreview
Specifies if the graph container should be used for preview.
+
mxStencil.prototype.h0
Holds the height of the shape.
Defines the color to be used for the handle fill color.
Defines the default size for handles.
Defines the color to be used for the handle stroke color.
mxGraph.prototype.handleGesture = function(state,
evt)
Invokes if a gesture event has been detected on a cell state.
mxEdgeHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxVertexHandler.prototype.handleImage
Optional mxImage to be used as handles.
mxPanningManager.prototype.handleMouseOut
Specifies if mouse events outside of the component should be handled.
mxDefaultKeyHandler.prototype.handler
Holds the mxKeyHandler for key event handling.
mxSelectionCellsHandler.prototype.handlers
mxDictionary that maps from cells to handlers.
Boolean specifying if the width should be updated.
mxGraphHierarchyNode.prototype.hashCode
Assigns a unique hashcode for each node.
hasScrollbars: function(node)
Returns true if the overflow CSS property of the given node is either scroll or auto.
mxCellMarker.prototype.hasValidState = function()
Returns true if validState is not null.
mxGraphAbstractHierarchyCell.prototype.height
The height of this cell
mxImage.prototype.height
Integer that specifies the height of the image.
mxRectangle.prototype.height
Holds the height of the rectangle.
mxEditor.prototype.help
Holds the mxWindow created in showHelp.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.helpWidth
Specifies the width of the help window in pixels.
mxEditor.prototype.helpWindowImage
Icon for the help window.
mxCellHighlight.prototype.hide = function()
Resets the state of the cell marker.
mxGuide.prototype.hide = function()
Hides all current guides.
mxTooltipHandler.prototype.hide = function()
Hides the tooltip and resets the timer.
mxWindow.prototype.hide = function()
Hides the window.
Specifies the event name for hide.
mxPopupMenu.prototype.hideMenu = function()
Removes the menu and all submenus.
mxTooltipHandler.prototype.hideOnHover
Specifies if the tooltip should be hidden if the mouse is moved over the current cell.
mxEditor.prototype.hideProperties = function ()
Hides the properties dialog.
mxPopupMenu.prototype.hideSubmenu = function(parent)
Removes all submenus inside the given parent.
mxTooltipHandler.prototype.hideTooltip = function()
Hides the tooltip.
Defines the color to be used for the cell highlighting.
Defines the strokewidth to be used for the highlights.
mxConstraintHandler.prototype.highlightColor
Specifies the color for the highlight.
mxDragSource.prototype.highlightDropTargets
Specifies if drop targets should be highlighted.
mxGraphHandler.prototype.highlightEnabled
Specifies if drop targets under the mouse should be enabled.
mxUndoManager.prototype.history
Array that contains the steps of the command history.
mxGraph.prototype.hitsSwimlaneContent = function(swimlane,
x,
y)
Returns true if the given coordinate pair is inside the content are of the given swimlane.
mxGraph.prototype.home = function()
Uses the root of the model as the root of the displayed cell hierarchy and selects the previous root.
mxCompactTreeLayout.prototype.horizontal
Specifies the orientation of the layout.
mxGuide.prototype.horizontal
Specifies if horizontal guides are enabled.
mxPartitionLayout.prototype.horizontal
Boolean indicating the direction in which the space is partitioned.
mxStackLayout.prototype.horizontal
Specifies the orientation of the layout.
mxSwimlaneManager.prototype.horizontal
Specifies the orientation of the swimlanes.
mxEditor.prototype.horizontalFlow
Specifies the direction of the flow in the diagram.
mxCompactTreeLayout.prototype.horizontalLayout = function(node,
x0,
y0,
bounds)
mxCellMarker.prototype.hotspot
Specifies the portion of the width and height that should trigger a highlight.
mxCellMarker.prototype.hotspotEnabled
Specifies if the hotspot is enabled.
htmlEntities: function(s,
newline)
Replaces characters (less than, greater than, newlines and quotes) with their HTML entities in the given string and returns the result.
mxGraph.prototype.htmlLabels
Specifies the return value for isHtmlLabel.
mxGraphHandler.prototype.htmlPreview
Specifies if the graph container should be used for preview.
diff --git a/docs/js-api/index/General9.html b/docs/js-api/index/General9.html index 09a20cbc8..1754fed46 100644 --- a/docs/js-api/index/General9.html +++ b/docs/js-api/index/General9.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 id, mxCell
 idrefs, mxObjectCodec
 ieVerticalFilter, mxText
 ignoreCell, mxPanningHandler
 ignoredChanges, mxAutoSaveManager
 ignoreMouseDown, mxConnectionHandler
 ignoreScrollbars, mxGraph
 image
 imageBasePath
 imageBundles, mxGraph
 images, mxImageBundle
 imageSize
 importCells, mxGraph
 importEnabled, mxGraph
 In-place editing, mxGraph
 include, mxClient
 includeOverlays, mxImageExport
 index, mxVertexHandler
 indexOf, mxUtils
 indexOfNextAdd, mxUndoManager
 indexOfStylename, mxUtils
 indicatorSize, mxLabel
 indicatorSpacing, mxLabel
 indices, mxFastOrganicLayout
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initialize, mxCellRenderer
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank, mxGraphHierarchyModel
 initialTemp, mxFastOrganicLayout
 initialTouchX, mxConnectionHandler
 initialTouchY, mxConnectionHandler
 initialX, mxCoordinateAssignment
 initMarkers, mxImageExport
 initShapes, mxImageExport
 innerNode, mxShape
 insert
 insertCount, mxClipboard
 insertEdge
 insertFunction, mxEditor
 insertGradient, mxShape
 insertIntoGraph, mxCodec
 insertState, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 interHierarchySpacing, mxHierarchicalLayout
 interRankCellSpacing
 intersection, mxUtils
 intersects
 intraCellSpacing
 invalid, mxCellState
 INVALID_COLOR, mxConstants
 INVALID_CONNECT_TARGET_COLOR, mxConstants
 invalidate, mxGraphView
 invalidColor, mxCellMarker
 invalidOrder, mxCellState
 invert
 invokesStopCellEditing, mxGraph
 IS_GC, mxClient
 IS_IE, mxClient
 IS_IE6, mxClient
 IS_LOCAL, mxClient
 IS_MAC, mxClient
 IS_MT, mxClient
 IS_NS, mxClient
 IS_OP, mxClient
 IS_OT, mxClient
 IS_SF, mxClient
 IS_SVG, mxClient
 IS_TOUCH, mxClient
 IS_VML, mxClient
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAutoAntiAlias, mxSvgCanvas2D
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isCompressed, mxXmlCanvas2D
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainedEvent, mxGraph
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEmptyString, mxText
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventsEnabled, mxEventSource
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isFoEnabled, mxSvgCanvas2D
 isForceMarqueeEvent, mxGraph
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isMixedModeHtml, mxShape
 isModified
 isMouseDown, mxGraph
 isMoveable, mxFastOrganicLayout
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNode, mxUtils
 isNumeric, mxUtils
 isOrthogonal, mxGraph
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isPopupTrigger
 isPort, mxGraph
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isReference
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isReversed, mxGraphHierarchyEdge
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStopEvent, mxConnectionHandler
 isStyleSet, mxText
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isTerminalPointMovable, mxGraph
 isTextEnabled
 isToggleEvent, mxGraph
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml
 isWrapping, mxGraph
 itemCount, mxPopupMenu
 iteration, mxFastOrganicLayout
 iterationsWithoutImprovement, mxMedianHybridCrossingReduction
+
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 id, mxCell
 idrefs, mxObjectCodec
 ieVerticalFilter, mxText
 ignoreCell, mxPanningHandler
 ignoredChanges, mxAutoSaveManager
 ignoreMouseDown, mxConnectionHandler
 ignoreScrollbars, mxGraph
 image
 imageBasePath
 imageBundles, mxGraph
 images, mxImageBundle
 imageSize
 importCells, mxGraph
 importEnabled, mxGraph
 In-place editing, mxGraph
 include, mxClient
 includeOverlays, mxImageExport
 index, mxVertexHandler
 indexOf, mxUtils
 indexOfNextAdd, mxUndoManager
 indexOfStylename, mxUtils
 indicatorSize, mxLabel
 indicatorSpacing, mxLabel
 indices, mxFastOrganicLayout
 info, mxLog
 init
 initBend, mxEdgeHandler
 initControl, mxCellRenderer
 initialCoords, mxCoordinateAssignment
 initialize, mxCellRenderer
 initializeLabel, mxCellRenderer
 initializeOverlay, mxCellRenderer
 initializeShape, mxCellRenderer
 initialRank, mxGraphHierarchyModel
 initialTemp, mxFastOrganicLayout
 initialTouchX, mxConnectionHandler
 initialTouchY, mxConnectionHandler
 initialX, mxCoordinateAssignment
 initMarkers, mxImageExport
 initShapes, mxImageExport
 innerNode, mxShape
 insert
 insertCount, mxClipboard
 insertEdge
 insertFunction, mxEditor
 insertGradient, mxShape
 insertIntoGraph, mxCodec
 insertState, mxCellRenderer
 insertVertex, mxGraph
 installChangeHandler, mxEditor
 installCloseHandler, mxWindow
 installDblClickHandler, mxEditor
 installDrillHandler, mxEditor
 installDropHandler, mxDefaultToolbar
 installInsertHandler, mxEditor
 installListeners
 installMaximizeHandler, mxWindow
 installMinimizeHandler, mxWindow
 installMoveHandler, mxWindow
 installOverlayListeners, mxCellRenderer
 installUndoHandler, mxEditor
 interHierarchySpacing, mxHierarchicalLayout
 interRankCellSpacing
 intersection, mxUtils
 intersects
 intraCellSpacing
 invalid, mxCellState
 INVALID_COLOR, mxConstants
 INVALID_CONNECT_TARGET_COLOR, mxConstants
 invalidate, mxGraphView
 invalidColor, mxCellMarker
 invalidOrder, mxCellState
 invert
 invokesStopCellEditing, mxGraph
 IS_GC, mxClient
 IS_IE, mxClient
 IS_IE6, mxClient
 IS_LOCAL, mxClient
 IS_MAC, mxClient
 IS_MT, mxClient
 IS_NS, mxClient
 IS_OP, mxClient
 IS_OT, mxClient
 IS_QUIRKS, mxClient
 IS_SF, mxClient
 IS_SVG, mxClient
 IS_TOUCH, mxClient
 IS_VML, mxClient
 isAddEnabled, mxSwimlaneManager
 isAddPointEvent, mxEdgeHandler
 isAllowDanglingEdges, mxGraph
 isAllowEval, mxGraphView
 isAllowLoops, mxGraph
 isAllowOverlapParent, mxGraph
 isAltDown, mxEvent
 isAncestor
 isAutoAntiAlias, mxSvgCanvas2D
 isAutoSizeCell, mxGraph
 isAutoSizeCells, mxGraph
 isBinary, mxXmlRequest
 isBrowserSupported, mxClient
 isBubbling, mxLayoutManager
 isBundleSupported, mxResources
 isCellBendable, mxGraph
 isCellCloneable, mxGraph
 isCellCodec
 isCellCollapsed, mxGraph
 isCellConnectable, mxGraph
 isCellDeletable, mxGraph
 isCellDisconnectable, mxGraph
 isCellEditable, mxGraph
 isCellFoldable, mxGraph
 isCellHorizontal, mxSwimlaneManager
 isCellIgnored, mxSpaceManager
 isCellLocked, mxGraph
 isCellMovable, mxGraph
 isCellResizable, mxGraph
 isCellsBendable, mxGraph
 isCellsCloneable, mxGraph
 isCellsDeletable, mxGraph
 isCellsDisconnectable, mxGraph
 isCellsEditable, mxGraph
 isCellSelectable, mxGraph
 isCellSelected, mxGraph
 isCellShiftable, mxSpaceManager
 isCellsLocked, mxGraph
 isCellsMovable, mxGraph
 isCellsResizable, mxGraph
 isCellsSelectable, mxGraph
 isCellVisible, mxGraph
 isCloneEnabled, mxGraphHandler
 isCloneEvent, mxGraph
 isCloneInvalidEdges, mxGraph
 isCollapsed
 isCompressed, mxXmlCanvas2D
 isConnectable
 isConnectableCell
 isConnectableEdges, mxGraph
 isConnecting, mxConnectionHandler
 isConstrainChild, mxGraph
 isConstrainChildren, mxGraph
 isConstrainedEvent, mxGraph
 isConsumed
 isContainerEvent, mxGraphView
 isControlDown
 isCreateIds, mxGraphModel
 isCreateTarget, mxConnectionHandler
 isDelayedSelection, mxGraphHandler
 isDisconnectOnMove, mxGraph
 isDropEnabled, mxGraph
 isEdge
 isEdgeIgnored, mxGraphLayout
 isEdgeLabelsMovable, mxGraph
 isEdgeValid, mxGraph
 isEditing, mxGraph
 isEmpty
 isEmptyString, mxText
 isEnabled
 isEnabledForEvent, mxGuide
 isEnterStopsCellEditing, mxGraph
 isEscapeEnabled, mxGraph
 isEventsEnabled, mxEventSource
 isExcluded
 isExtendParent, mxGraph
 isExtendParents
 isExtendParentsOnAdd, mxGraph
 isFoEnabled, mxSvgCanvas2D
 isForceMarqueeEvent, mxGraph
 isGraphEvent, mxKeyHandler
 isGridEnabled
 isGridEnabledEvent, mxGraph
 isGuidesEnabled, mxDragSource
 isHandleEnabled, mxEdgeHandler
 isHandleVisible, mxEdgeHandler
 isHideLabel, mxCellEditor
 isHideOnHover, mxTooltipHandler
 isHorizontal
 isHotspotEnabled, mxCellMarker
 isHtmlLabel, mxGraph
 isHtmlLabels, mxGraph
 isImmediateConnectSource, mxConnectionHandler
 isInvokesStopCellEditing, mxGraph
 isLabelClipped, mxGraph
 isLabelEvent, mxCellRenderer
 isLabelMovable, mxGraph
 isLayer, mxGraphModel
 isLeftMouseButton, mxEvent
 isLoop, mxGraph
 isMenuShowing, mxPopupMenu
 isMetaDown, mxEvent
 isMixedModeHtml, mxShape
 isModified
 isMouseDown, mxGraph
 isMoveable, mxFastOrganicLayout
 isMoveEnabled, mxGraphHandler
 isMoveIconToFrontForState, mxConnectionHandler
 isMultigraph, mxGraph
 isNode, mxUtils
 isNumeric, mxUtils
 isOrthogonal, mxGraph
 isPanningEnabled, mxPanningHandler
 isPanningTrigger, mxPanningHandler
 isPopupTrigger
 isPort, mxGraph
 isPortsEnabled, mxGraph
 isPropertiesVisible, mxEditor
 isReady, mxXmlRequest
 isReference
 isRemoveCellsFromParent, mxGraphHandler
 isRemovePointEvent, mxEdgeHandler
 isRendering, mxGraphView
 isResizable, mxWindow
 isResizeContainer, mxGraph
 isResizeEnabled, mxSwimlaneManager
 isReversed, mxGraphHierarchyEdge
 isRightMouseButton, mxEvent
 isRoot, mxGraphModel
 isScrollEvent, mxGraphView
 isSelected, mxGraphSelectionModel
 isSelectEnabled, mxGraphHandler
 isSelectionDashed
 isSelectionEmpty, mxGraph
 isShapeEvent, mxCellRenderer
 isShiftDown, mxEvent
 isShiftDownwards, mxSpaceManager
 isShiftRightwards, mxSpaceManager
 isSignificant, mxUndoableEdit
 isSingleSelection, mxGraphSelectionModel
 isSizerVisible, mxVertexHandler
 isSource, mxMouseEvent
 isSplitEnabled, mxGraph
 isSplitTarget, mxGraph
 isStartEvent, mxConnectionHandler
 isStopEvent, mxConnectionHandler
 isStyleSet, mxText
 isSwimlane, mxGraph
 isSwimlaneIgnored, mxSwimlaneManager
 isSwimlaneNesting, mxGraph
 isSwimlaneSelectionEnabled, mxGraph
 isTerminalPointMovable, mxGraph
 isTextEnabled
 isToggleEvent, mxGraph
 isValidAncestor, mxGraph
 isValidConnection, mxGraph
 isValidDropTarget, mxGraph
 isValidResponse, mxSession
 isValidRoot, mxGraph
 isValidSource
 isValidState, mxCellMarker
 isValidTarget
 isVertex
 isVertexIgnored
 isVertexLabelsMovable, mxGraph
 isVertexMovable, mxGraphLayout
 isVisible
 isVml
 isWrapping, mxGraph
 itemCount, mxPopupMenu
 iteration, mxFastOrganicLayout
 iterationsWithoutImprovement, mxMedianHybridCrossingReduction
-
mxCell.prototype.id
Holds the Id.
mxObjectCodec.prototype.idrefs
Array containing the variable names that should be turned into or converted from references.
mxText.prototype.ieVerticalFilter
Holds the filter definition for vertical text in IE.
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxAutoSaveManager.prototype.ignoredChanges
Counter for ignored changes in autosave.
mxConnectionHandler.prototype.ignoreMouseDown
Specifies if the connection handler should ignore the state of the mouse button when highlighting the source.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxCellOverlay.prototype.image
Holds the mxImage to be used as the icon.
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
Basepath for all images URLs in the core without trailing slash.
mxDefaultPopupMenu.prototype.imageBasePath
Base path for all icon attributes in the config.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxImageBundle.prototype.images
Maps from keys to images.
mxLabel.prototype.imageSize
Default width and height for the image.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
include: function(src)
Dynamically adds a script node to the document header.
mxImageExport.prototype.includeOverlays
Specifies if overlays should be included in the export.
mxVertexHandler.prototype.index
Holds the index of the current handle.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
mxUndoManager.prototype.indexOfNextAdd
Index of the element to be added next.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
mxLabel.prototype.indicatorSize
Default width and height for the indicicator.
mxLabel.prototype.indicatorSpacing
Default spacing between image and indicator.
mxFastOrganicLayout.prototype.indices
Hashtable from cells to local indices.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxDefaultToolbar.prototype.init
Constructs the toolbar for the given container and installs a listener that updates the mxEditor.insertFunction on editor if an item is selected in the toolbar.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and adds it to the container.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPanningHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initialize = function(state,
rendering)
Initializes the display for the given cell state.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxFastOrganicLayout.prototype.initialTemp
Start value of temperature.
mxConnectionHandler.prototype.initialTouchX
Holds the x-coordinate of the intial touch event for tap and hold.
mxConnectionHandler.prototype.initialTouchY
Holds the y-coordinate of the intial touch event for tap and hold.
mxCoordinateAssignment.prototype.initialX
The minimum x position node placement starts at
mxImageExport.prototype.initMarkers = function()
Initializes the built-in markers.
mxImageExport.prototype.initShapes = function()
Initializes the built-in shapes.
mxShape.prototype.innerNode
Holds the DOM node that graphically represents this shape.
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
Counts the number of times the clipboard data has been inserted.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxEditor.prototype.insertFunction
Specifies the function to be used for inserting new cells into the graph.
mxShape.prototype.insertGradient = function(node)
Inserts the given gradient node.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
mxCellRenderer.prototype.insertState = function(state,
nextNode)
Inserts the given state before the given node into its parent.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
mxHierarchicalLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxCoordinateAssignment.prototype.interRankCellSpacing
The minimum distance between cells on adjacent ranks.
mxHierarchicalLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxCoordinateAssignment.prototype.intraCellSpacing
The minimum buffer between cells on the same rank.
mxHierarchicalLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxCellState.prototype.invalid
Specifies if the state is invalid.
Defines the color to be used for the coloring invalid connection previews.
Defines the color to be used for highlighting a invalid target cells for a new or changed connections.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)
Invalidates the state of the given cell, all its descendants and connected edges.
mxCellMarker.prototype.invalidColor
Holds the invalid marker color.
mxCellState.prototype.invalidOrder
Specifies if the cell has an invalid order.
mxCompactTreeLayout.prototype.invert
Specifies if edge directions should be inverted.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
True if the documents location does not start with http:// or https://.
True if the client is a Mac.
True if -moz-transform is available as a CSS style.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
True if -o-transform is available as a CSS style.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
True if this client uses a touch interface (no mouse).
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAutoAntiAlias: function()
Returns autoAntiAlias.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
isCompressed: function()
Returns compressed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxText.prototype.isEmptyString = function(text)
Returns true if the given string is empty or contains only whitespace.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
isFoEnabled: function()
Returns foEnabled.
mxGraph.prototype.isForceMarqueeEvent = function(evt)
Returns true if the given event forces marquee selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxShape.prototype.isMixedModeHtml = function()
Used to determine if a shape can be rendered using createHtml in mixed mode Html without compromising the display accuracy.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
mxFastOrganicLayout.prototype.isMoveable
Array of booleans representing the movable states of the vertices.
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(str)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
mxGraphHierarchyEdge.prototype.isReversed
Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxText.prototype.isStyleSet = function(style)
Returns true if the given font style (bold, italic etc) is true in this shape’s fontStyle.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
isTextEnabled: function()
Returns textEnabled.
isTextEnabled: function()
Returns textEnabled.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
mxPath.prototype.isVml = function()
Returns true if format is vml.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
mxPopupMenu.prototype.itemCount
Contains the number of times addItem has been called for a new menu.
mxFastOrganicLayout.prototype.iteration
Current iteration count.
mxMedianHybridCrossingReduction.prototype.iterationsWithoutImprovement
The total number of crossings found in the best configuration so far
+
mxCell.prototype.id
Holds the Id.
mxObjectCodec.prototype.idrefs
Array containing the variable names that should be turned into or converted from references.
mxText.prototype.ieVerticalFilter
Holds the filter definition for vertical text in IE.
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxAutoSaveManager.prototype.ignoredChanges
Counter for ignored changes in autosave.
mxConnectionHandler.prototype.ignoreMouseDown
Specifies if the connection handler should ignore the state of the mouse button when highlighting the source.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxCellOverlay.prototype.image
Holds the mxImage to be used as the icon.
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
image: function(x,
y,
w,
h,
src,
aspect,
flipH,
flipV)
Paints an image.
Basepath for all images URLs in the core without trailing slash.
mxDefaultPopupMenu.prototype.imageBasePath
Base path for all icon attributes in the config.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxImageBundle.prototype.images
Maps from keys to images.
mxLabel.prototype.imageSize
Default width and height for the image.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxGraph.prototype.importCells = function(cells,
dx,
dy,
target,
evt)
Clones and inserts the given cells into the graph using the move method and returns the inserted cells.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
include: function(src)
Dynamically adds a script node to the document header.
mxImageExport.prototype.includeOverlays
Specifies if overlays should be included in the export.
mxVertexHandler.prototype.index
Holds the index of the current handle.
indexOf: function(array,
obj)
Returns the index of obj in array or -1 if the array does not contains the given object.
mxUndoManager.prototype.indexOfNextAdd
Index of the element to be added next.
indexOfStylename: function(style,
stylename)
Returns the index of the given stylename in the given style.
mxLabel.prototype.indicatorSize
Default width and height for the indicicator.
mxLabel.prototype.indicatorSpacing
Default spacing between image and indicator.
mxFastOrganicLayout.prototype.indices
Hashtable from cells to local indices.
info: function()
Writes the current navigator information to the console.
mxCellEditor.prototype.init = function ()
Creates the textarea and installs the event listeners.
mxConnectionHandler.prototype.init = function()
Initializes the shapes required for this connection handler.
mxDefaultToolbar.prototype.init
Constructs the toolbar for the given container and installs a listener that updates the mxEditor.insertFunction on editor if an item is selected in the toolbar.
mxEdgeHandler.prototype.init = function()
Initializes the shapes required for this edge handler.
mxGraph.prototype.init = function(container)
Initializes the container and creates the respective datastructures.
mxGraphView.prototype.init = function()
Initializes the graph event dispatch loop for the specified container and invokes create to create the required DOM nodes for the display.
mxLabel.prototype.init = function(container)
Initializes the shape and adds it to the container.
init: function()
Initializes the DOM node for the console.
mxOutline.prototype.init = function(container)
Initializes the outline inside the given container.
mxPanningHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxPopupMenu.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxShape.prototype.init = function(container)
Initializes the shape by creaing the DOM node using create and adding it into the given container.
mxTooltipHandler.prototype.init = function()
Initializes the DOM nodes required for this tooltip handler.
mxVertexHandler.prototype.init = function()
Initializes the shapes required for this vertex handler.
mxWindow.prototype.init = function(x,
y,
width,
height,
style)
Initializes the DOM tree that represents the window.
mxEdgeHandler.prototype.initBend = function(bend)
Helper method to initialize the given bend.
mxCellRenderer.prototype.initControl = function(state,
control,
handleEvents,
clickHandler)
Initializes the given control and returns the corresponding DOM node.
mxCoordinateAssignment.prototype.initialCoords = function(facade,
model)
Sets up the layout in an initial positioning.
mxCellRenderer.prototype.initialize = function(state,
rendering)
Initializes the display for the given cell state.
mxCellRenderer.prototype.initializeLabel = function(state)
Initiailzes the label with a suitable container.
mxCellRenderer.prototype.initializeOverlay = function(state,
overlay)
Initializes the given overlay.
mxCellRenderer.prototype.initializeShape = function(state)
Initializes the shape in the given state by calling its init method with the correct container.
mxGraphHierarchyModel.prototype.initialRank = function()
Basic determination of minimum layer ranking by working from from sources or sinks and working through each node in the relevant edge direction.
mxFastOrganicLayout.prototype.initialTemp
Start value of temperature.
mxConnectionHandler.prototype.initialTouchX
Holds the x-coordinate of the intial touch event for tap and hold.
mxConnectionHandler.prototype.initialTouchY
Holds the y-coordinate of the intial touch event for tap and hold.
mxCoordinateAssignment.prototype.initialX
The minimum x position node placement starts at
mxImageExport.prototype.initMarkers = function()
Initializes the built-in markers.
mxImageExport.prototype.initShapes = function()
Initializes the built-in shapes.
mxShape.prototype.innerNode
Holds the DOM node that graphically represents this shape.
mxCell.prototype.insert = function(child,
index)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
mxDefaultToolbar.prototype.insert = function(vertex,
evt,
target)
Handles a drop by inserting the given vertex into the given parent cell or the default parent if no parent is specified.
Counts the number of times the clipboard data has been inserted.
mxCell.prototype.insertEdge = function(edge,
isOutgoing)
Inserts the specified edge into the edge array and returns the edge.
mxConnectionHandler.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Creates, inserts and returns the new edge for the given parameters.
mxGraph.prototype.insertEdge = function(parent,
id,
value,
source,
target,
style)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
mxEditor.prototype.insertFunction
Specifies the function to be used for inserting new cells into the graph.
mxShape.prototype.insertGradient = function(node)
Inserts the given gradient node.
mxCodec.prototype.insertIntoGraph = function(cell)
Inserts the given cell into its parent and terminal cells.
mxCellRenderer.prototype.insertState = function(state,
nextNode)
Inserts the given state before the given node into its parent.
mxGraph.prototype.insertVertex = function(parent,
id,
value,
x,
y,
width,
height,
style,
relative)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
mxEditor.prototype.installChangeHandler = function (graph)
Installs the listeners required to automatically validate the graph.
mxWindow.prototype.installCloseHandler = function()
Adds the closeImage as a new image node in closeImg and installs the close event.
mxEditor.prototype.installDblClickHandler = function (graph)
Overrides mxGraph.dblClick to invoke dblClickAction on a cell and reset the selection tool in the toolbar.
mxEditor.prototype.installDrillHandler = function (graph)
Installs listeners for dispatching the root event.
mxDefaultToolbar.prototype.installDropHandler = function (img,
dropHandler)
Makes the given img draggable using the given function for handling a drop event.
mxEditor.prototype.installInsertHandler = function (graph)
Installs the handler for invoking insertFunction if one is defined.
mxCellRenderer.prototype.installListeners = function(state)
Installs the event listeners for the given cell state.
mxGraphView.prototype.installListeners = function()
Installs the required listeners in the container.
mxWindow.prototype.installMaximizeHandler = function()
Installs the event listeners required for maximizing the window.
mxWindow.prototype.installMinimizeHandler = function()
Installs the event listeners required for minimizing the window.
mxWindow.prototype.installMoveHandler = function()
Installs the event listeners required for moving the window.
Installs the listeners for the given mxCellState, mxCellOverlay and mxShape that represents the overlay.
mxEditor.prototype.installUndoHandler = function (graph)
Adds the undoManager to the graph model and the view.
mxHierarchicalLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxCoordinateAssignment.prototype.interRankCellSpacing
The minimum distance between cells on adjacent ranks.
mxHierarchicalLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
intersection: function (x0,
y0,
x1,
y1,
x2,
y2,
x3,
y3)
Returns the intersection of two lines as an mxPoint.
mxCellMarker.prototype.intersects = function(state,
me)
Returns true if the given coordinate pair intersects the given state.
mxGraph.prototype.intersects = function(state,
x,
y)
Returns the bottom-most cell that intersects the given point (x, y) in the cell hierarchy that starts at the given parent.
intersects: function(a,
b)
Returns true if the two rectangles intersect.
mxCoordinateAssignment.prototype.intraCellSpacing
The minimum buffer between cells on the same rank.
mxHierarchicalLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxCellState.prototype.invalid
Specifies if the state is invalid.
Defines the color to be used for the coloring invalid connection previews.
Defines the color to be used for highlighting a invalid target cells for a new or changed connections.
mxGraphView.prototype.invalidate = function(cell,
recurse,
includeEdges,
orderChanged)
Invalidates the state of the given cell, all its descendants and connected edges.
mxCellMarker.prototype.invalidColor
Holds the invalid marker color.
mxCellState.prototype.invalidOrder
Specifies if the cell has an invalid order.
mxCompactTreeLayout.prototype.invert
Specifies if edge directions should be inverted.
mxGraphHierarchyEdge.prototype.invert = function(layer)
Inverts the direction of this internal edge(s)
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
True if the documents location does not start with http:// or https://.
True if the client is a Mac.
True if -moz-transform is available as a CSS style.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
True if -o-transform is available as a CSS style.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
True if this client uses a touch interface (no mouse).
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
mxSwimlaneManager.prototype.isAddEnabled = function()
Returns addEnabled.
mxEdgeHandler.prototype.isAddPointEvent = function(evt)
Returns true if the given event is a trigger to add a new point.
mxGraph.prototype.isAllowDanglingEdges = function()
Returns allowDanglingEdges as a boolean.
mxGraphView.prototype.isAllowEval = function()
Returns allowEval.
mxGraph.prototype.isAllowLoops = function()
Returns allowLoops as a boolean.
mxGraph.prototype.isAllowOverlapParent = function(cell)
Returns true if the given cell is allowed to be placed outside of the parents area.
isAltDown: function(evt)
Returns true if the alt key is pressed for the given event.
mxGraphHierarchyNode.prototype.isAncestor = function(otherNode)
mxGraphModel.prototype.isAncestor = function(parent,
child)
Returns true if the given parent is an ancestor of the given child.
isAutoAntiAlias: function()
Returns autoAntiAlias.
mxGraph.prototype.isAutoSizeCell = function(cell)
Returns true if the size of the given cell should automatically be updated after a change of the label.
mxGraph.prototype.isAutoSizeCells = function()
Returns autoSizeCells.
mxXmlRequest.prototype.isBinary = function()
Returns binary.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
mxLayoutManager.prototype.isBubbling = function()
Returns true if a layout should bubble, that is, if the parent layout should be executed whenever a cell layout (layout of the children of a cell) has been executed.
Hook for subclassers to disable support for a given language.
mxGraph.prototype.isCellBendable = function(cell)
Returns true if the given cell is bendable.
mxGraph.prototype.isCellCloneable = function(cell)
Returns true if the given cell is cloneable.
codec.isCellCodec = function()
Returns true since this is a cell codec.
mxCodec.prototype.isCellCodec = function(codec)
Returns true if the given codec is a cell codec.
mxGraph.prototype.isCellCollapsed = function(cell)
Returns true if the given cell is collapsed in this graph.
mxGraph.prototype.isCellConnectable = function(cell)
Returns true if the given cell is connectable in this graph.
mxGraph.prototype.isCellDeletable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellDisconnectable = function(cell,
terminal,
source)
Returns true if the given cell is disconnectable from the source or target terminal.
mxGraph.prototype.isCellEditable = function(cell)
Returns true if the given cell is editable.
mxGraph.prototype.isCellFoldable = function(cell,
collapse)
Returns true if the given cell is foldable.
mxSwimlaneManager.prototype.isCellHorizontal = function(cell)
Returns true if the given cell is horizontal.
mxSpaceManager.prototype.isCellIgnored = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellLocked = function(cell)
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellMovable = function(cell)
Returns true if the given cell is moveable.
mxGraph.prototype.isCellResizable = function(cell)
Returns true if the given cell is resizable.
mxGraph.prototype.isCellsBendable = function()
Returns cellsBenadable.
mxGraph.prototype.isCellsCloneable = function()
Returns cellsCloneable, that is, if the graph allows cloning of cells by using control-drag.
mxGraph.prototype.isCellsDeletable = function()
Returns cellsDeletable.
mxGraph.prototype.isCellsDisconnectable = function()
Returns cellsDisconnectable.
mxGraph.prototype.isCellsEditable = function()
Returns cellsEditable.
mxGraph.prototype.isCellSelectable = function(cell)
Returns true if the given cell is selectable.
mxGraph.prototype.isCellSelected = function(cell)
Returns true if the given cell is selected.
mxSpaceManager.prototype.isCellShiftable = function(cell)
Sets the graph that the layouts operate on.
mxGraph.prototype.isCellsLocked = function()
Returns true if the given cell may not be moved, sized, bended, disconnected, edited or selected.
mxGraph.prototype.isCellsMovable = function()
Returns cellsMovable.
mxGraph.prototype.isCellsResizable = function()
Returns cellsResizable.
mxGraph.prototype.isCellsSelectable = function()
Returns cellsSelectable.
mxGraph.prototype.isCellVisible = function(cell)
Returns true if the given cell is visible in this graph.
mxGraphHandler.prototype.isCloneEnabled = function()
Returns cloneEnabled.
mxGraph.prototype.isCloneEvent = function(evt)
Returns true if the given event is a clone event.
mxGraph.prototype.isCloneInvalidEdges = function()
Returns cloneInvalidEdges as a boolean.
mxCell.prototype.isCollapsed = function()
Returns true if the cell is collapsed.
mxGraphModel.prototype.isCollapsed = function(cell)
Returns true if the given mxCell is collapsed.
isCompressed: function()
Returns compressed.
mxCell.prototype.isConnectable = function()
Returns true if the cell is connectable.
mxGraph.prototype.isConnectable = function(connectable)
Returns true if the connectionHandler is enabled.
mxGraphModel.prototype.isConnectable = function(cell)
Returns true if the given mxCell is connectable.
mxConnectionHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxEdgeHandler.prototype.isConnectableCell = function(cell)
Returns true if the given cell is connectable.
mxGraph.prototype.isConnectableEdges = function()
Returns connectableEdges as a boolean.
mxConnectionHandler.prototype.isConnecting = function()
Returns true if the source terminal has been clicked and a new connection is currently being previewed.
mxGraph.prototype.isConstrainChild = function(cell)
Returns true if the given cell should be kept inside the bounds of its parent according to the rules defined by getOverlap and isAllowOverlapParent.
mxGraph.prototype.isConstrainChildren = function()
Returns constrainChildren.
mxGraph.prototype.isConstrainedEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
isConsumed: function(evt)
Returns true if the event has been consumed using consume.
mxEventObject.prototype.isConsumed = function()
Returns true if the event has been consumed.
mxMouseEvent.prototype.isConsumed = function()
Returns consumed.
mxGraphView.prototype.isContainerEvent = function(evt)
Returns true if the event origin is one of the drawing panes or containers of the view.
isControlDown: function(evt)
Returns true if the control key is pressed for the given event.
mxKeyHandler.prototype.isControlDown = function(evt)
Returns true if the control key is pressed.
mxGraphModel.prototype.isCreateIds = function()
Returns createIds.
mxConnectionHandler.prototype.isCreateTarget = function()
Returns createTarget.
mxGraphHandler.prototype.isDelayedSelection = function(cell)
Hook to return true for delayed selections.
mxGraph.prototype.isDisconnectOnMove = function()
Returns disconnectOnMove as a boolean.
mxGraph.prototype.isDropEnabled = function()
Returns dropEnabled as a boolean.
mxCell.prototype.isEdge = function()
Returns true if the cell is an edge.
mxGraphAbstractHierarchyCell.prototype.isEdge = function()
Returns whether or not this cell is an edge
mxGraphHierarchyEdge.prototype.isEdge = function()
Returns true.
mxGraphModel.prototype.isEdge = function(cell)
Returns true if the given cell is an edge.
mxGraphLayout.prototype.isEdgeIgnored = function(edge)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isEdgeLabelsMovable = function()
Returns edgeLabelsMovable.
mxGraph.prototype.isEdgeValid = function(edge,
source,
target)
Checks if the return value of getEdgeValidationError for the given arguments is null.
mxGraph.prototype.isEditing = function(cell)
Returns true if the given cell is currently being edited.
mxCellStatePreview.prototype.isEmpty = function()
Returns true if this contains no entries.
isEmpty: function()
Returns true if the clipboard currently has not data stored.
mxGraphSelectionModel.prototype.isEmpty = function()
Returns true if no cells are currently selected.
mxUndoableEdit.prototype.isEmpty = function()
Returns true if the this edit contains no changes.
mxUndoManager.prototype.isEmpty = function()
Returns true if the history is empty.
mxText.prototype.isEmptyString = function(text)
Returns true if the given string is empty or contains only whitespace.
mxAutoSaveManager.prototype.isEnabled = function()
Returns true if events are handled.
mxCellMarker.prototype.isEnabled = function()
Returns true if events are handled.
mxConnectionHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxConstraintHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxDragSource.prototype.isEnabled = function()
Returns enabled.
mxGraph.prototype.isEnabled = function()
Returns true if the graph is enabled.
mxGraphHandler.prototype.isEnabled = function()
Returns enabled.
mxKeyHandler.prototype.isEnabled = function()
Returns true if events are handled.
mxLayoutManager.prototype.isEnabled = function()
Returns true if events are handled.
mxOutline.prototype.isEnabled = function()
Returns true if events are handled.
mxPopupMenu.prototype.isEnabled = function()
Returns true if events are handled.
mxRubberband.prototype.isEnabled = function()
Returns true if events are handled.
mxSelectionCellsHandler.prototype.isEnabled = function()
Returns enabled.
mxSpaceManager.prototype.isEnabled = function()
Returns true if events are handled.
mxSwimlaneManager.prototype.isEnabled = function()
Returns true if events are handled.
mxTooltipHandler.prototype.isEnabled = function()
Returns true if events are handled.
isEnabled: function()
Returns enabled.
mxGuide.prototype.isEnabledForEvent = function(evt)
Returns true if the guide should be enabled for the given native event.
mxGraph.prototype.isEnterStopsCellEditing = function()
Returns enterStopsCellEditing.
mxGraph.prototype.isEscapeEnabled = function()
Returns escapeEnabled.
mxEventSource.prototype.isEventsEnabled = function()
Returns eventsEnabled.
codec.isExcluded = function(obj,
attr,
value,
isWrite)
Excludes user objects that are XML nodes.
mxObjectCodec.prototype.isExcluded = function(obj,
attr,
value,
write)
Returns true if the given attribute is to be ignored by the codec.
mxGraph.prototype.isExtendParent = function(cell)
Returns true if the parent of the given cell should be extended if the child has been resized so that it overlaps the parent.
mxGraph.prototype.isExtendParents = function()
Returns extendParents.
mxSpaceManager.prototype.isExtendParents = function()
Returns true if events are handled.
mxGraph.prototype.isExtendParentsOnAdd = function()
Returns extendParentsOnAdd.
isFoEnabled: function()
Returns foEnabled.
mxGraph.prototype.isForceMarqueeEvent = function(evt)
Returns true if the given event forces marquee selection.
mxKeyHandler.prototype.isGraphEvent = function(evt)
Returns true if the event should be processed by this handler, that is, if the event source is either the target, one of its direct children, a descendant of the mxGraph.container, or the mxGraph.cellEditor of the graph.
mxDragSource.prototype.isGridEnabled = function()
Returns gridEnabled.
mxGraph.prototype.isGridEnabled = function()
Returns gridEnabled as a boolean.
mxGraph.prototype.isGridEnabledEvent = function(evt)
Returns true if the given mouse event should be aligned to the grid.
mxDragSource.prototype.isGuidesEnabled = function()
Returns guidesEnabled.
mxEdgeHandler.prototype.isHandleEnabled = function(index)
Creates the shape used to display the given bend.
mxEdgeHandler.prototype.isHandleVisible = function(index)
Returns true if the handle at the given index is visible.
mxCellEditor.prototype.isHideLabel = function(state)
Returns true if the label should be hidden while the cell is being edited.
mxTooltipHandler.prototype.isHideOnHover = function()
Returns hideOnHover.
mxCompactTreeLayout.prototype.isHorizontal = function()
Returns horizontal.
mxPartitionLayout.prototype.isHorizontal = function()
Returns horizontal.
mxStackLayout.prototype.isHorizontal = function()
Returns horizontal.
mxSwimlaneManager.prototype.isHorizontal = function()
Returns horizontal.
mxCellMarker.prototype.isHotspotEnabled = function()
Returns true if hotspot is used in intersects.
mxGraph.prototype.isHtmlLabel = function(cell)
Returns true if the label must be rendered as HTML markup.
mxGraph.prototype.isHtmlLabels = function()
Returns htmlLabels.
mxConnectionHandler.prototype.isImmediateConnectSource = function(state)
Returns true if a tap on the given source state should immediately start connecting.
mxGraph.prototype.isInvokesStopCellEditing = function()
Returns invokesStopCellEditing.
mxGraph.prototype.isLabelClipped = function(cell)
Returns true if the overflow portion of labels should be hidden.
mxCellRenderer.prototype.isLabelEvent = function(state,
evt)
Returns true if the event is for the label of the given state.
mxGraph.prototype.isLabelMovable = function(cell)
Returns true if the given edges’s label is moveable.
mxGraphModel.prototype.isLayer = function(cell)
Returns true if isRoot returns true for the parent of the given cell.
isLeftMouseButton: function(evt)
Returns true if the left mouse button is pressed for the given event.
mxGraph.prototype.isLoop = function(state)
Returns true if the given cell state is a loop.
mxPopupMenu.prototype.isMenuShowing = function()
Returns true if the menu is showing.
isMetaDown: function(evt)
Returns true if the meta key is pressed for the given event.
mxShape.prototype.isMixedModeHtml = function()
Used to determine if a shape can be rendered using createHtml in mixed mode Html without compromising the display accuracy.
mxCellEditor.prototype.isModified = function()
Returns modified.
mxEditor.prototype.isModified = function ()
Returns modified.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
mxFastOrganicLayout.prototype.isMoveable
Array of booleans representing the movable states of the vertices.
mxGraphHandler.prototype.isMoveEnabled = function()
Returns moveEnabled.
mxConnectionHandler.prototype.isMoveIconToFrontForState = function(state)
Returns true if the state has a HTML label in the graph’s container, otherwise it returns moveIconFront.
mxGraph.prototype.isMultigraph = function()
Returns multigraph as a boolean.
isNode: function(value,
nodeName,
attributeName,
attributeValue)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
isNumeric: function(str)
Returns true if the specified value is numeric, that is, if it is not null, not an empty string, not a HEX number and isNaN returns false.
mxGraph.prototype.isOrthogonal = function(edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
mxPanningHandler.prototype.isPanningEnabled = function()
Returns panningEnabled.
mxPanningHandler.prototype.isPanningTrigger = function(me)
Returns true if the given event is a panning trigger for the optional given cell.
isPopupTrigger: function(evt)
Returns true if the event is a popup trigger.
mxMouseEvent.prototype.isPopupTrigger = function()
Returns true if the event is a popup trigger.
mxPopupMenu.prototype.isPopupTrigger = function(me)
Returns true if the given event is a popupmenu trigger for the optional given cell.
mxGraph.prototype.isPort = function(cell)
Returns true if the given cell is a “port”, that is, when connecting to it, the cell returned by getTerminalForPort should be used as the terminal and the port should be referenced by the ID in either the mxConstants.STYLE_SOURCE_PORT or the or the mxConstants.STYLE_TARGET_PORT.
mxGraph.prototype.isPortsEnabled = function()
Returns portsEnabled as a boolean.
mxEditor.prototype.isPropertiesVisible = function ()
Returns true if the properties dialog is currently visible.
mxXmlRequest.prototype.isReady = function()
Returns true if the response is ready.
codec.isReference = function(obj,
attr,
value,
isWrite)
Returns true for the child attribute if the child cell had a previous parent or if we’re reading the child as an attribute rather than a child node, in which case it’s always a reference.
mxObjectCodec.prototype.isReference = function(obj,
attr,
value,
write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
mxGraphHandler.prototype.isRemoveCellsFromParent = function()
Returns removeCellsFromParent.
mxEdgeHandler.prototype.isRemovePointEvent = function(evt)
Returns true if the given event is a trigger to remove a point.
mxGraphView.prototype.isRendering = function()
Returns rendering.
mxWindow.prototype.isResizable = function()
Returns true if the window is resizable.
mxGraph.prototype.isResizeContainer = function()
Returns resizeContainer.
mxSwimlaneManager.prototype.isResizeEnabled = function()
Returns resizeEnabled.
mxGraphHierarchyEdge.prototype.isReversed
Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout
isRightMouseButton: function(evt)
Returns true if the right mouse button was pressed.
mxGraphModel.prototype.isRoot = function(cell)
Returns true if the given cell is the root of the model and a non-null value.
mxGraphView.prototype.isScrollEvent = function(evt)
Returns true if the event origin is one of the scrollbars of the container in IE.
mxGraphSelectionModel.prototype.isSelected = function(cell)
Returns true if the given mxCell is selected.
mxGraphHandler.prototype.isSelectEnabled = function()
Returns selectEnabled.
mxEdgeHandler.prototype.isSelectionDashed = function()
Returns mxConstants.EDGE_SELECTION_DASHED.
mxVertexHandler.prototype.isSelectionDashed = function()
Returns mxConstants.VERTEX_SELECTION_DASHED.
mxGraph.prototype.isSelectionEmpty = function()
Returns true if the selection is empty.
mxCellRenderer.prototype.isShapeEvent = function(state,
evt)
Returns true if the event is for the shape of the given state.
isShiftDown: function(evt)
Returns true if the shift key is pressed for the given event.
mxSpaceManager.prototype.isShiftDownwards = function()
Returns true if events are handled.
mxSpaceManager.prototype.isShiftRightwards = function()
Returns true if events are handled.
mxUndoableEdit.prototype.isSignificant = function()
Returns significant.
mxGraphSelectionModel.prototype.isSingleSelection = function()
Returns singleSelection as a boolean.
mxVertexHandler.prototype.isSizerVisible = function(index)
Returns true if the sizer for the given index is visible.
mxMouseEvent.prototype.isSource = function(shape)
Returns true if the given mxShape is the source of evt.
mxGraph.prototype.isSplitEnabled = function()
Returns splitEnabled as a boolean.
mxGraph.prototype.isSplitTarget = function(target,
cells,
evt)
Returns true if the given edge may be splitted into two edges with the given cell as a new terminal between the two.
mxConnectionHandler.prototype.isStartEvent = function(me)
Returns true if the given mouse down event should start this handler.
mxConnectionHandler.prototype.isStopEvent = function(me)
Returns true if the given mouse up event should stop this handler.
mxText.prototype.isStyleSet = function(style)
Returns true if the given font style (bold, italic etc) is true in this shape’s fontStyle.
mxGraph.prototype.isSwimlane = function (cell)
Returns true if the given cell is a swimlane in the graph.
mxSwimlaneManager.prototype.isSwimlaneIgnored = function(swimlane)
Returns true if the given swimlane should be ignored.
mxGraph.prototype.isSwimlaneNesting = function()
Returns swimlaneNesting as a boolean.
mxGraph.prototype.isSwimlaneSelectionEnabled = function()
Returns swimlaneSelectionEnabled as a boolean.
mxGraph.prototype.isTerminalPointMovable = function(cell,
source)
Returns true if the given terminal point is movable.
isTextEnabled: function()
Returns textEnabled.
isTextEnabled: function()
Returns textEnabled.
mxGraph.prototype.isToggleEvent = function(evt)
Returns true if the given event is a toggle event.
mxGraph.prototype.isValidAncestor = function(cell,
parent,
recurse)
Returns whether or not the specified parent is a valid ancestor of the specified cell, either direct or indirectly based on whether ancestor recursion is enabled.
mxGraph.prototype.isValidConnection = function(source,
target)
Returns true if the given target cell is a valid target for source.
mxGraph.prototype.isValidDropTarget = function(cell,
cells,
evt)
Returns true if the given cell is a valid drop target for the specified cells.
mxSession.prototype.isValidResponse = function(req)
Returns true if the response data in the given mxXmlRequest is valid.
mxGraph.prototype.isValidRoot = function(cell)
Returns true if the given cell is a valid root for the cell display hierarchy.
mxConnectionHandler.prototype.isValidSource = function(cell)
Returns mxGraph.isValidSource for the given source terminal.
mxGraph.prototype.isValidSource = function(cell)
Returns true if the given cell is a valid source for new connections.
mxCellMarker.prototype.isValidState = function(state)
Returns true if the given mxCellState is a valid state.
mxConnectionHandler.prototype.isValidTarget = function(cell)
Returns true.
mxGraph.prototype.isValidTarget = function(cell)
Returns isValidSource for the given cell.
mxCell.prototype.isVertex = function()
Returns true if the cell is a vertex.
mxGraphAbstractHierarchyCell.prototype.isVertex = function()
Returns whether or not this cell is a node
mxGraphHierarchyNode.prototype.isVertex = function()
Returns true.
mxGraphModel.prototype.isVertex = function(cell)
Returns true if the given cell is a vertex.
mxCompactTreeLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxFastOrganicLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored as a vertex.
mxGraphLayout.prototype.isVertexIgnored = function(vertex)
Returns a boolean indicating if the given mxCell should be ignored by the algorithm.
mxGraph.prototype.isVertexLabelsMovable = function()
Returns vertexLabelsMovable.
mxGraphLayout.prototype.isVertexMovable = function(cell)
Returns a boolean indicating if the given mxCell is movable or bendable by the algorithm.
mxCell.prototype.isVisible = function()
Returns true if the cell is visibile.
mxGraphModel.prototype.isVisible = function(cell)
Returns true if the given mxCell is visible.
isVisible: function()
Returns true if the console is visible.
mxWindow.prototype.isVisible = function()
Returns true if the window is visible.
mxPath.prototype.isVml = function()
Returns true if format is vml.
isVml: function(node)
Returns true if the given node is in the VML namespace.
mxGraph.prototype.isWrapping = function(cell)
This enables wrapping for HTML labels.
mxPopupMenu.prototype.itemCount
Contains the number of times addItem has been called for a new menu.
mxFastOrganicLayout.prototype.iteration
Current iteration count.
mxMedianHybridCrossingReduction.prototype.iterationsWithoutImprovement
The total number of crossings found in the best configuration so far
diff --git a/docs/js-api/index/Variables10.html b/docs/js-api/index/Variables10.html index 6ac588386..115262e98 100644 --- a/docs/js-api/index/Variables10.html +++ b/docs/js-api/index/Variables10.html @@ -11,13 +11,13 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 PAGE_FORMAT_A4_PORTRAIT, mxConstants
 PAGE_FORMAT_LETTER_PORTRAIT, mxConstants
 pageBreakColor, mxGraph
 pageBreakDashed, mxGraph
 pageBreaksVisible, mxGraph
 pageCount, mxPrintPreview
 pageFormat
 pageScale, mxGraph
 pageSelector, mxPrintPreview
 pageVisible, mxGraph
 PAN, mxEvent
 PAN_END, mxEvent
 PAN_START, mxEvent
 panDx, mxGraph
 panDy, mxGraph
 panningEnabled, mxPanningHandler
 parallelEdgeSpacing
 params, mxXmlRequest
 parent
 parentBorder, mxHierarchicalLayout
 parentsChanged, mxCompactTreeLayout
 password, mxXmlRequest
 path, mxPath
 PATH_SEPARATOR, mxCellPath
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 point, mxConnectionConstraint
 pointImage, mxConstraintHandler
 points
 polling, mxSession
 popupHandler, mxEditor
 portsEnabled, mxGraph
 POST, mxEvent
 postfix, mxGraphModel
 postParameterName, mxEditor
 preferHtml, mxEdgeHandler
 preferModeHtml
 preferPageSize, mxGraph
 prefHozEdgeSep
 prefix, mxGraphModel
 prefVertEdgeOff
 preserveImageAspect, mxImageShape
 previewColor, mxGraphHandler
 previewElement, mxDragSource
 previewEnabled, mxPanningHandler
 previousLayerConnectedCache, mxCoordinateAssignment
 previousLayerConnectedCells, mxGraphAbstractHierarchyCell
 printOverlays, mxPrintPreview
 promoteEdges, mxHierarchicalLayout
 properties, mxEventObject
 propertiesHeight, mxEditor
 propertiesResource, mxEditor
 propertiesWidth, mxEditor
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 ranks, mxGraphHierarchyModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 RECEIVE, mxEvent
 received, mxSession
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 REDO, mxEvent
 redone, mxUndoableEdit
 REFRESH, mxEvent
 refreshHandler, mxSelectionCellsHandler
 relative, mxGeometry
 REMOVE_CELLS, mxEvent
 REMOVE_CELLS_FROM_PARENT, mxEvent
 REMOVE_OVERLAY, mxEvent
 removeCellsFromParent, mxGraphHandler
 removeEnabled, mxEdgeHandler
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 replaceLinefeeds, mxText
 request, mxXmlRequest
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetHandler
 resetViewOnRootChange, mxGraph
 RESIZE, mxEvent
 RESIZE_CELLS, mxEvent
 RESIZE_END, mxEvent
 RESIZE_START, mxEvent
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeLast, mxStackLayout
 resizeParent
 resizeVertices, mxPartitionLayout
 resources, mxResources
 RESUME, mxEvent
 reverse, mxObjectCodec
 root, mxGraphModel
 ROOT, mxEvent
 roots
 roundedCrispSvg, mxShape
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 PAGE_FORMAT_A4_PORTRAIT, mxConstants
 PAGE_FORMAT_LETTER_PORTRAIT, mxConstants
 pageBreakColor, mxGraph
 pageBreakDashed, mxGraph
 pageBreaksVisible, mxGraph
 pageCount, mxPrintPreview
 pageFormat
 pageScale, mxGraph
 pageSelector, mxPrintPreview
 pageVisible, mxGraph
 PAN, mxEvent
 PAN_END, mxEvent
 PAN_START, mxEvent
 panDx, mxGraph
 panDy, mxGraph
 panningEnabled, mxPanningHandler
 parallelEdgeSpacing
 params, mxXmlRequest
 parent
 parentBorder, mxHierarchicalLayout
 parentsChanged, mxCompactTreeLayout
 password, mxXmlRequest
 path, mxPath
 PATH_SEPARATOR, mxCellPath
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 point, mxConnectionConstraint
 pointImage, mxConstraintHandler
 points
 polling, mxSession
 popupHandler, mxEditor
 portsEnabled, mxGraph
 POST, mxEvent
 postfix, mxGraphModel
 postParameterName, mxEditor
 preferHtml, mxEdgeHandler
 preferModeHtml
 preferPageSize, mxGraph
 prefHozEdgeSep
 prefix, mxGraphModel
 prefVertEdgeOff
 preserveImageAspect, mxImageShape
 previewColor, mxGraphHandler
 previewElement, mxDragSource
 previewEnabled, mxPanningHandler
 previousLayerConnectedCache, mxCoordinateAssignment
 previousLayerConnectedCells, mxGraphAbstractHierarchyCell
 printOverlays, mxPrintPreview
 promoteEdges, mxHierarchicalLayout
 properties, mxEventObject
 propertiesHeight, mxEditor
 propertiesResource, mxEditor
 propertiesWidth, mxEditor
R
 radius
 radiusSquared, mxFastOrganicLayout
 rankBottomY, mxCoordinateAssignment
 rankIndex, WeightedCellSorter
 ranks, mxGraphHierarchyModel
 rankTopY, mxCoordinateAssignment
 rankWidths, mxCoordinateAssignment
 rankY, mxCoordinateAssignment
 RECEIVE, mxEvent
 received, mxSession
 RECTANGLE_ROUNDING_FACTOR, mxConstants
 REDO, mxEvent
 redone, mxUndoableEdit
 REFRESH, mxEvent
 refreshHandler, mxSelectionCellsHandler
 relative, mxGeometry
 REMOVE_CELLS, mxEvent
 REMOVE_CELLS_FROM_PARENT, mxEvent
 REMOVE_OVERLAY, mxEvent
 removeCellsFromParent, mxGraphHandler
 removeEnabled, mxEdgeHandler
 renderHint, mxGraph
 rendering, mxGraphView
 RENDERING_HINT_EXACT, mxConstants
 RENDERING_HINT_FASTER, mxConstants
 RENDERING_HINT_FASTEST, mxConstants
 replaceLinefeeds, mxText
 request, mxXmlRequest
 resetEdges
 resetEdgesOnConnect, mxGraph
 resetEdgesOnMove, mxGraph
 resetEdgesOnResize, mxGraph
 resetHandler
 resetViewOnRootChange, mxGraph
 RESIZE, mxEvent
 RESIZE_CELLS, mxEvent
 RESIZE_END, mxEvent
 RESIZE_START, mxEvent
 resizeContainer, mxGraph
 resizeEnabled, mxSwimlaneManager
 resizeHandler, mxSpaceManager
 resizeLast, mxStackLayout
 resizeParent
 resizeVertices, mxPartitionLayout
 resources, mxResources
 RESUME, mxEvent
 reverse, mxObjectCodec
 root, mxGraphModel
 ROOT, mxEvent
 roots
 ROTATION_HANDLE, mxEvent
 roundedCrispSvg, mxShape
-
Defines the rectangle for the A4 portrait page format.
Defines the rectangle for the Letter portrait page format.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxPrintPreview.prototype.pageCount
Holds the actual number of pages in the preview.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxPrintPreview.prototype.pageFormat
Holds the mxRectangle that defines the page format.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxPrintPreview.prototype.pageSelector
Boolean that specifies if the page selector should be displayed.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
Specifies the event name for pan.
Specifies the event name for panEnd.
Specifies the event name for panStart.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
mxCoordinateAssignment.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges.
mxHierarchicalLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxXmlRequest.prototype.params
Holds the form encoded data for the POST request.
mxCell.prototype.parent
Reference to the parent cell.
mxGraphHierarchyModel.prototype.parent
The parent cell whose children are being laid out
mxGraphLayout.prototype.parent
The parent cell of the layout, if any
mxHierarchicalLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxCompactTreeLayout.prototype.parentsChanged
A set of the parents that need updating based on children process as part of the layout
mxXmlRequest.prototype.password
Specifies the password to be used for authentication.
mxPath.prototype.path
Contains the textual representation of the path as an array.
Defines the separator between the path components.
mxConnectionConstraint.prototype.perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
Name of the ellipse perimeter.
Name of the rectangle perimeter.
Name of the rhombus perimeter.
PERIMETER_TRIANGLE: 'trianglePerimeter' }
Name of the triangle perimeter.
mxConnectionConstraint.prototype.point
mxPoint that specifies the fixed location of the connection point.
mxConstraintHandler.prototype.pointImage
mxImage to be used as the image for fixed connection points.
mxGeometry.prototype.points
Array of mxPoints which specifies the control points along the edge.
mxShape.prototype.points
Holds the array of mxPoints that specify the points of this shape.
mxSession.prototype.polling
mxEditor.prototype.popupHandler
Holds a mxDefaultPopupMenu for displaying popupmenus.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
Specifies the event name for post.
mxGraphModel.prototype.postfix
Defines the postfix of new Ids.
mxEditor.prototype.postParameterName
Specifies if the name of the post parameter that contains the diagram data in a post request to the server.
mxEdgeHandler.prototype.preferHtml
Specifies if bends should be added to the graph container.
mxActor.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxConnector.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxCylinder.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxDoubleEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxLine.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxShape.prototype.preferModeHtml
Specifies if createHtml should be used in prefer Html mode.
mxStencilShape.prototype.preferModeHtml
Always prefers VML in prefer HTML mode for stencil shapes.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxCompactTreeLayout.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxCoordinateAssignment.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxGraphModel.prototype.prefix
Defines the prefix of new Ids.
mxCompactTreeLayout.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxCoordinateAssignment.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxImageShape.prototype.preserveImageAspect
Switch to preserve image aspect.
mxGraphHandler.prototype.previewColor
Specifies the color of the preview shape.
mxDragSource.prototype.previewElement
Optional mxRectangle that specifies the unscaled size of the preview.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxCoordinateAssignment.prototype.previousLayerConnectedCache
A store of connections to the layer below for speed
mxGraphAbstractHierarchyCell.prototype.previousLayerConnectedCells
A cached version of the cells this cell connects to on the next layer down
mxPrintPreview.prototype.printOverlays
Specifies if overlays should be printed.
mxHierarchicalLayout.prototype.promoteEdges
Whether or not to promote edges that terminate on vertices with different but common ancestry to appear connected to the highest siblings in the ancestry chains
mxEventObject.prototype.properties
Holds the properties as an associative array.
mxEditor.prototype.propertiesHeight
Specifies the height of the properties window in pixels.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.propertiesWidth
Specifies the width of the properties window in pixels.
+
Defines the rectangle for the A4 portrait page format.
Defines the rectangle for the Letter portrait page format.
mxGraph.prototype.pageBreakColor
Specifies the color for page breaks.
mxGraph.prototype.pageBreakDashed
Specifies the page breaks should be dashed.
mxGraph.prototype.pageBreaksVisible
Specifies if a dashed line should be drawn between multiple pages.
mxPrintPreview.prototype.pageCount
Holds the actual number of pages in the preview.
mxGraph.prototype.pageFormat
Specifies the page format for the background page.
mxPrintPreview.prototype.pageFormat
Holds the mxRectangle that defines the page format.
mxGraph.prototype.pageScale
Specifies the scale of the background page.
mxPrintPreview.prototype.pageSelector
Boolean that specifies if the page selector should be displayed.
mxGraph.prototype.pageVisible
Specifies if the background page should be visible.
Specifies the event name for pan.
Specifies the event name for panEnd.
Specifies the event name for panStart.
mxGraph.prototype.panDx
Current horizontal panning value.
mxGraph.prototype.panDy
Current vertical panning value.
mxPanningHandler.prototype.panningEnabled
Specifies if panning should be enabled.
mxCoordinateAssignment.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges.
mxHierarchicalLayout.prototype.parallelEdgeSpacing
The distance between each parallel edge on each ranks for long edges
mxXmlRequest.prototype.params
Holds the form encoded data for the POST request.
mxCell.prototype.parent
Reference to the parent cell.
mxGraphHierarchyModel.prototype.parent
The parent cell whose children are being laid out
mxGraphLayout.prototype.parent
The parent cell of the layout, if any
mxHierarchicalLayout.prototype.parentBorder
The border to be added around the children if the parent is to be resized using resizeParent.
mxCompactTreeLayout.prototype.parentsChanged
A set of the parents that need updating based on children process as part of the layout
mxXmlRequest.prototype.password
Specifies the password to be used for authentication.
mxPath.prototype.path
Contains the textual representation of the path as an array.
Defines the separator between the path components.
mxConnectionConstraint.prototype.perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
Name of the ellipse perimeter.
Name of the rectangle perimeter.
Name of the rhombus perimeter.
PERIMETER_TRIANGLE: 'trianglePerimeter' }
Name of the triangle perimeter.
mxConnectionConstraint.prototype.point
mxPoint that specifies the fixed location of the connection point.
mxConstraintHandler.prototype.pointImage
mxImage to be used as the image for fixed connection points.
mxGeometry.prototype.points
Array of mxPoints which specifies the control points along the edge.
mxShape.prototype.points
Holds the array of mxPoints that specify the points of this shape.
mxSession.prototype.polling
mxEditor.prototype.popupHandler
Holds a mxDefaultPopupMenu for displaying popupmenus.
mxGraph.prototype.portsEnabled
Specifies if ports are enabled.
Specifies the event name for post.
mxGraphModel.prototype.postfix
Defines the postfix of new Ids.
mxEditor.prototype.postParameterName
Specifies if the name of the post parameter that contains the diagram data in a post request to the server.
mxEdgeHandler.prototype.preferHtml
Specifies if bends should be added to the graph container.
mxActor.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxConnector.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxCylinder.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxDoubleEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxEllipse.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxLine.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxShape.prototype.preferModeHtml
Specifies if createHtml should be used in prefer Html mode.
mxStencilShape.prototype.preferModeHtml
Always prefers VML in prefer HTML mode for stencil shapes.
mxRhombus.prototype.preferModeHtml
Overrides the parent value with false, meaning it will draw as VML in prefer Html mode.
mxGraph.prototype.preferPageSize
Specifies if the graph size should be rounded to the next page number in sizeDidChange.
mxCompactTreeLayout.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxCoordinateAssignment.prototype.prefHozEdgeSep
The preferred horizontal distance between edges exiting a vertex
mxGraphModel.prototype.prefix
Defines the prefix of new Ids.
mxCompactTreeLayout.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxCoordinateAssignment.prototype.prefVertEdgeOff
The preferred vertical offset between edges exiting a vertex
mxImageShape.prototype.preserveImageAspect
Switch to preserve image aspect.
mxGraphHandler.prototype.previewColor
Specifies the color of the preview shape.
mxDragSource.prototype.previewElement
Optional mxRectangle that specifies the unscaled size of the preview.
mxPanningHandler.prototype.previewEnabled
Specifies if the panning should be previewed.
mxCoordinateAssignment.prototype.previousLayerConnectedCache
A store of connections to the layer below for speed
mxGraphAbstractHierarchyCell.prototype.previousLayerConnectedCells
A cached version of the cells this cell connects to on the next layer down
mxPrintPreview.prototype.printOverlays
Specifies if overlays should be printed.
mxHierarchicalLayout.prototype.promoteEdges
Whether or not to promote edges that terminate on vertices with different but common ancestry to appear connected to the highest siblings in the ancestry chains
mxEventObject.prototype.properties
Holds the properties as an associative array.
mxEditor.prototype.propertiesHeight
Specifies the height of the properties window in pixels.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.propertiesWidth
Specifies the width of the properties window in pixels.
-
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
Specifies the event name for receive.
mxSession.prototype.received
Total number of received bytes.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
Specifies the event name for redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
Specifies the event name for refresh.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
Specifies the event name for removeCells.
Specifies the event name for removeCellsFromParent.
Specifies the event name for removeOverlay.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
Specifies the event name for resize.
Specifies the event name for resizeCells.
Specifies the event name for resizeEnd.
Specifies the event name for resizeStart.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Associative array that maps from keys to values.
Specifies the event name for suspend.
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
Specifies the event name for root.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxGraphLayouts that this layout contains.
mxShape.prototype.roundedCrispSvg
Specifies if crisp rendering should be enabled for rounded shapes.
+
mxCircleLayout.prototype.radius
Integer specifying the size of the radius.
mxFastOrganicLayout.prototype.radius
The approximate radius of each cell, nodes only.
mxFastOrganicLayout.prototype.radiusSquared
The approximate radius squared of each cell, nodes only.
mxCoordinateAssignment.prototype.rankBottomY
Internal cache of bottom-most value of Y for each rank
WeightedCellSorter.prototype.rankIndex
The index this cell is in the model rank.
mxGraphHierarchyModel.prototype.ranks
Mapping from rank number to actual rank
mxCoordinateAssignment.prototype.rankTopY
Internal cache of top-most values of Y for each rank
mxCoordinateAssignment.prototype.rankWidths
The width of all the ranks
mxCoordinateAssignment.prototype.rankY
The Y-coordinate of all the ranks
Specifies the event name for receive.
mxSession.prototype.received
Total number of received bytes.
Defines the rounding factor for rounded rectangles in percent between 0 and 1.
Specifies the event name for redo.
mxUndoableEdit.prototype.redone
Specifies if this edit has been redone.
Specifies the event name for refresh.
mxSelectionCellsHandler.prototype.refreshHandler
Keeps a reference to an event listener for later removal.
mxGeometry.prototype.relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
Specifies the event name for removeCells.
Specifies the event name for removeCellsFromParent.
Specifies the event name for removeOverlay.
mxGraphHandler.prototype.removeCellsFromParent
Specifies if cells may be moved out of their parents.
mxEdgeHandler.prototype.removeEnabled
Specifies if removing bends by shift-click is enabled.
mxGraph.prototype.renderHint
RenderHint as it was passed to the constructor.
mxGraphView.prototype.rendering
Specifies if shapes should be created, updated and destroyed using the methods of mxCellRenderer in graph.
Defines the exact rendering hint.
Defines the faster rendering hint.
Defines the fastest rendering hint.
mxText.prototype.replaceLinefeeds
Specifies if linefeeds in HTML labels should be replaced with BR tags.
mxXmlRequest.prototype.request
Holds the inner, browser-specific request object.
mxCircleLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxCompactTreeLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxFastOrganicLayout.prototype.resetEdges
Specifies if all edge points of traversed edges should be removed.
mxGraph.prototype.resetEdgesOnConnect
Specifies if edge control points should be reset after the the edge has been reconnected.
mxGraph.prototype.resetEdgesOnMove
Specifies if edge control points should be reset after the move of a connected cell.
mxGraph.prototype.resetEdgesOnResize
Specifies if edge control points should be reset after the resize of a connected cell.
mxCellHighlight.prototype.resetHandler
Holds the handler that automatically invokes reset if the highlight should be hidden.
mxDefaultToolbar.prototype.resetHandler
Reference to the function used to reset the toolbar.
mxGraph.prototype.resetViewOnRootChange
Specifies if the scale and translate should be reset if the root changes in the model.
Specifies the event name for resize.
Specifies the event name for resizeCells.
Specifies the event name for resizeEnd.
Specifies the event name for resizeStart.
mxGraph.prototype.resizeContainer
Specifies if the container should be resized to the graph size when the graph size has changed.
mxSwimlaneManager.prototype.resizeEnabled
Specifies if resizing of swimlanes should be handled.
mxSpaceManager.prototype.resizeHandler
Holds the function that handles the move event.
mxStackLayout.prototype.resizeLast
If the last element should be resized to fill out the parent.
mxCompactTreeLayout.prototype.resizeParent
If the parents should be resized to match the width/height of the children.
mxHierarchicalLayout.prototype.resizeParent
Specifies if the parent should be resized after the layout so that it contains all the child cells.
mxStackLayout.prototype.resizeParent
If the parent should be resized to match the width/height of the stack.
mxPartitionLayout.prototype.resizeVertices
Boolean that specifies if vertices should be resized.
Associative array that maps from keys to values.
Specifies the event name for suspend.
mxObjectCodec.prototype.reverse
Maps from from XML attribute names to fieldnames.
mxGraphModel.prototype.root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
Specifies the event name for root.
mxGraphHierarchyModel.prototype.roots
Store of roots of this hierarchy model, these are real graph cells, not internal cells
mxHierarchicalLayout.prototype.roots
Holds the array of mxGraphLayouts that this layout contains.
Index for the rotation handle in an mxMouseEvent.
mxShape.prototype.roundedCrispSvg
Specifies if crisp rendering should be enabled for rounded shapes.
diff --git a/docs/js-api/index/Variables11.html b/docs/js-api/index/Variables11.html index 4b344f26c..ea5bdb8ca 100644 --- a/docs/js-api/index/Variables11.html +++ b/docs/js-api/index/Variables11.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 SAVE, mxEvent
 scale
 SCALE, mxEvent
 SCALE_AND_TRANSLATE, mxEvent
 scaleGrid, mxGraphHandler
 scanRanksFromSinks, mxGraphHierarchyModel
 scrollOnMove, mxGraphHandler
 segments, mxCellState
 select, mxConnectionHandler
 SELECT, mxEvent
 selectEnabled, mxGraphHandler
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectOnPopup, mxPanningHandler
 send, mxSession
 sent, mxSession
 SESSION, mxEvent
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 shapes
 sharedDiv, mxRubberband
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 SHOW, mxEvent
 showViewport, mxOutline
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE, mxEvent
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snapToTerminals, mxEdgeHandler
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK, mxGraphHierarchyModel
 spacing
 SPLIT_EDGE, mxEvent
 splitEnabled, mxGraph
 src, mxImage
 START_EDITING, mxEvent
 startOffset, mxShape
 state
 states, mxGuide
 status, mxEditor
 stencil, mxStencilShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 strokedBackground, mxCylinder
 strokewidth
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STENCIL_FLIPH, mxConstants
 STYLE_STENCIL_FLIPV, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 SUSPEND, mxEvent
 suspended, mxOutline
 SVG_STROKE_TOLERANCE, mxShape
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 SAVE, mxEvent
 scale
 SCALE, mxEvent
 SCALE_AND_TRANSLATE, mxEvent
 scaleGrid, mxGraphHandler
 scanRanksFromSinks, mxGraphHierarchyModel
 scrollOnMove, mxGraphHandler
 segments, mxCellState
 select, mxConnectionHandler
 SELECT, mxEvent
 selectEnabled, mxGraphHandler
 SELECTION_DASHED, mxConstants
 selectionModel, mxGraph
 selectOnPopup, mxPanningHandler
 send, mxSession
 sent, mxSession
 SESSION, mxEvent
 SHADOW_OFFSET_X, mxConstants
 SHADOW_OFFSET_Y, mxConstants
 SHADOW_OPACITY, mxConstants
 SHADOWCOLOR, mxConstants
 shape
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 shapes
 sharedDiv, mxRubberband
 shiftDownwards, mxSpaceManager
 shiftKeys, mxKeyHandler
 shiftRightwards, mxSpaceManager
 SHOW, mxEvent
 showViewport, mxOutline
 significant, mxUndoableEdit
 significantRemoteChanges, mxSession
 singleSelection, mxGraphSelectionModel
 singleSizer, mxVertexHandler
 size, mxUndoManager
 SIZE, mxEvent
 sizerImage, mxOutline
 smartSeparators, mxPopupMenu
 snapToTerminals, mxEdgeHandler
 source
 sourcePoint, mxGeometry
 SOURCESCANSTARTRANK, mxGraphHierarchyModel
 spacing
 SPLIT_EDGE, mxEvent
 splitEnabled, mxGraph
 src, mxImage
 START_EDITING, mxEvent
 startOffset, mxShape
 state
 states, mxGuide
 status, mxEditor
 stencil, mxStencilShape
 step, mxMorphing
 steps, mxMorphing
 STEPSIZE, mxClipboard
 strokedBackground, mxCylinder
 strokewidth
 style
 STYLE_ALIGN, mxConstants
 STYLE_ARCSIZE, mxConstants
 STYLE_AUTOSIZE, mxConstants
 STYLE_BENDABLE, mxConstants
 STYLE_CLONEABLE, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DELETABLE, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_EDITABLE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDFILL, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_PERIMETER, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FOLDABLE, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GLASS, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_ASPECT, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICAL_ALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_DIRECTION, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_STROKECOLOR, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_PADDING, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_MOVABLE, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_PORT_CONSTRAINT, mxConstants
 STYLE_RESIZABLE, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SMOOTH, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SOURCE_PORT, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTFILL, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STENCIL_FLIPH, mxConstants
 STYLE_STENCIL_FLIPV, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TARGET_PORT, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 stylesheet, mxGraph
 submenuImage, mxPopupMenu
 SUSPEND, mxEvent
 suspended, mxOutline
 SVG_STROKE_TOLERANCE, mxShape
 swimlaneIndicatorColorAttribute, mxGraph
 swimlaneNesting, mxGraph
 swimlaneRequired, mxEditor
 swimlaneSelectionEnabled, mxGraph
 swimlaneSpacing, mxEditor
-
Specifies the event name for open.
mxGraphView.prototype.scale
Specifies the scale.
mxPath.prototype.scale
Number that specifies the translation of the path.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
Specifies the event name for scale.
Specifies the event name for scaleAndTranslate.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraphHierarchyModel.prototype.scanRanksFromSinks
Whether the rank assignment is done from the sinks or sources.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxSession.prototype.sent
Total number of sent bytes.
Specifies the event name for session.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxCellRenderer.prototype.shapes
Array that maps from shape names to shape constructors.
mxImageExport.prototype.shapes
Holds implementations for the built-in shapes.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
Specifies the event name for show.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
Specifies the event name for startEditing.
mxShape.prototype.startOffset
Specifies the offset in pixels from the first point in points and the actual start of the shape.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxStencilShape.prototype.state
Holds the mxCellState associated with this shape.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxStencilShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxCylinder.prototype.strokedBackground
Specifies if the background should be stroked.
mxShape.prototype.strokewidth
Holds the current strokewidth.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Holds the style of the cell state that corresponds to this shape.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the endSize style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the horizontal image flip.
Defines the key for the vertical image flip.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Defines the key for the resizable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the horizontal stencil flip.
Defines the key for the vertical stencil flip.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
Specifies the event name for suspend.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxShape.prototype.SVG_STROKE_TOLERANCE
Event-tolerance for SVG strokes (in px).
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
+
Specifies the event name for open.
mxGraphView.prototype.scale
Specifies the scale.
mxPath.prototype.scale
Number that specifies the translation of the path.
mxPrintPreview.prototype.scale
Holds the scale of the print preview.
mxShape.prototype.scale
Holds the scale in which the shape is being painted.
Specifies the event name for scale.
Specifies the event name for scaleAndTranslate.
mxGraphHandler.prototype.scaleGrid
Specifies if the grid should be scaled.
mxGraphHierarchyModel.prototype.scanRanksFromSinks
Whether the rank assignment is done from the sinks or sources.
mxGraphHandler.prototype.scrollOnMove
Specifies if the view should be scrolled so that a moved cell is visible.
mxCellState.prototype.segments
Array of numbers that represent the cached length of each segment of the edge.
mxConnectionHandler.prototype.select
Specifies if new edges should be selected.
Specifies the event name for select.
mxGraphHandler.prototype.selectEnabled
Specifies if selecting is enabled.
Defines the dashed state to be used for the vertex selection border.
mxGraph.prototype.selectionModel
Holds the mxGraphSelectionModel that models the current selection.
mxPanningHandler.prototype.selectOnPopup
Specifies if cells should be selected if a popupmenu is displayed for them.
mxSession.prototype.sent
Total number of sent bytes.
Specifies the event name for session.
Specifies the x-offset of the shadow.
Specifies the y-offset of the shadow.
Defines the opacity for shadows.
Defines the color to be used to draw shadows in shapes and windows.
mxCellState.prototype.shape
Holds the mxShape that represents the cell graphically.
mxEdgeHandler.prototype.shape
Holds the mxShape that represents the preview edge.
mxGraphHandler.prototype.shape
Reference to the mxShape that represents the preview.
Name under which mxActor is registered in mxCellRenderer.
Name under which mxArrow is registered in mxCellRenderer.
Name under which mxCloud is registered in mxCellRenderer.
Name under which mxConnector is registered in mxCellRenderer.
Name under which mxCylinder is registered in mxCellRenderer.
Name under which mxDoubleEllipse is registered in mxCellRenderer.
Name under which mxEllipse is registered in mxCellRenderer.
Name under which mxHexagon is registered in mxCellRenderer.
Name under which mxImageShape is registered in mxCellRenderer.
Name under which mxLabel is registered in mxCellRenderer.
Name under which mxLine is registered in mxCellRenderer.
Name under which mxRectangleShape is registered in mxCellRenderer.
Name under which mxRhombus is registered in mxCellRenderer.
Name under which mxSwimlane is registered in mxCellRenderer.
Name under which mxTriangle is registered in mxCellRenderer.
mxCellRenderer.prototype.shapes
Array that maps from shape names to shape constructors.
mxImageExport.prototype.shapes
Holds implementations for the built-in shapes.
mxRubberband.prototype.sharedDiv
Holds the DIV element which is used to display the rubberband.
mxSpaceManager.prototype.shiftDownwards
Specifies if event handling is enabled.
mxKeyHandler.prototype.shiftKeys
Maps from keycodes to functions for pressed shift keys.
mxSpaceManager.prototype.shiftRightwards
Specifies if event handling is enabled.
Specifies the event name for show.
mxOutline.prototype.showViewport
Specifies a viewport rectangle should be shown.
mxUndoableEdit.prototype.significant
Specifies if the undoable change is significant.
mxSession.prototype.significantRemoteChanges
Whether remote changes should be significant in the local command history.
mxGraphSelectionModel.prototype.singleSelection
Specifies if only one selected item at a time is allowed.
mxVertexHandler.prototype.singleSizer
Specifies if only one sizer handle at the bottom, right corner should be used.
mxUndoManager.prototype.size
Maximum command history size.
Specifies the event name for size.
mxOutline.prototype.sizerImage
Optional mxImage to be used for the sizer.
mxPopupMenu.prototype.smartSeparators
Specifies if separators should only be added if a menu item follows them.
mxEdgeHandler.prototype.snapToTerminals
Specifies if waypoints should snap to the routing centers of terminals.
mxCell.prototype.source
Reference to the source terminal.
mxGraphHierarchyEdge.prototype.source
The node this edge is sourced at
mxMultiplicity.prototype.source
Boolean that specifies if the rule is applied to the source or target terminal of an edge.
mxUndoableEdit.prototype.source
Specifies the source of the edit.
mxGeometry.prototype.sourcePoint
Defines the source mxPoint of the edge.
mxGraphHierarchyModel.prototype.SOURCESCANSTARTRANK
High value to start source layering scan rank value from.
mxCellHighlight.prototype.spacing
Specifies the spacing between the highlight for vertices and the vertex.
mxDefaultToolbar.prototype.spacing
Defines the spacing between existing and new vertices in gridSize units when a new vertex is dropped on an existing cell.
mxLabel.prototype.spacing
Default value for spacing.
mxParallelEdgeLayout.prototype.spacing
Defines the spacing between the parallels.
mxPartitionLayout.prototype.spacing
Integer that specifies the absolute spacing in pixels between the children.
mxStackLayout.prototype.spacing
Specifies the spacing between the cells.
Specifies the event name for splitEdge.
mxGraph.prototype.splitEnabled
Specifies if dropping onto edges should be enabled.
mxImage.prototype.src
String that specifies the URL of the image.
Specifies the event name for startEditing.
mxShape.prototype.startOffset
Specifies the offset in pixels from the first point in points and the actual start of the shape.
mxCellHighlight.prototype.state
Reference to the mxCellState.
mxEdgeHandler.prototype.state
Reference to the mxCellState being modified.
mxMouseEvent.prototype.state
Holds the optional mxCellState associated with this event.
mxStencilShape.prototype.state
Holds the mxCellState associated with this shape.
mxVertexHandler.prototype.state
Reference to the mxCellState being modified.
mxGuide.prototype.states
Contains the mxCellStates that are used for alignment.
mxEditor.prototype.status
DOM container that holds the statusbar.
mxStencilShape.prototype.stencil
Holds the mxStencil that defines the shape.
mxMorphing.prototype.step
Contains the current step.
mxMorphing.prototype.steps
Specifies the maximum number of steps for the morphing.
Defines the step size to offset the cells after each paste operation.
mxCylinder.prototype.strokedBackground
Specifies if the background should be stroked.
mxShape.prototype.strokewidth
Holds the current strokewidth.
mxStencil.prototype.strokewidth
Holds the strokewidth direction from the description.
mxCell.prototype.style
Holds the style as a string of the form [(stylename|key=value);].
mxCellState.prototype.style
Contains an array of key, value pairs that represent the style of the cell.
mxShape.prototype.style
Holds the style of the cell state that corresponds to this shape.
Defines the key for the align style.
Defines the rounding factor for a rounded rectangle in percent (without the percent sign).
Defines the key for the autosize style.
Defines the key for the bendable style.
Defines the key for the cloneable style.
Defines the key for the endSize style.
Defines the key for the deletable style.
Defines the key for the direction style.
Defines the key for the edge style.
Defines the key for the editable style.
Defines the key for the elbow style.
Defines the key for the end arrow marker.
Defines the key for the endFill style.
Defines the key for the endSize style.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
Defines the key for the fill color.
Defines the key for the foldable style.
Defines the key for the fontColor style.
Defines the key for the fontFamily style.
Defines the key for the fontSize style (in points).
Defines the key for the fontStyle style.
Defines the key for the glass style.
Defines the key for the gradient direction.
Defines the key for the gradient color.
Defines the key for the horizontal style.
Defines the key for the image style.
Defines the key for the align style.
Defines the key for the image aspect style.
Defines the key for the image background color.
Defines the key for the image border color.
Defines the key for the horizontal image flip.
Defines the key for the vertical image flip.
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
Defines the key for the imageWidth style.
Defines the key for the indicatorColor style.
Defines the key for the indicatorDirection style.
Defines the key for the indicatorGradientColor style.
Defines the key for the indicator height.
Defines the key for the indicator image used within an mxLabel.
Defines the key for the indicator shape used within an mxLabel.
The defines the key for the spacing between the label and the indicator in mxLabel.
Defines the key for the indicator stroke color in mxLabel.
Defines the key for the indicator width.
Defines the key for the label background color.
Defines the key for the label border color.
Defines the key for the label padding, ie.
Defines the key for the horizontal label position of vertices.
Defines the key for the loop style.
Defines the key for the movable style.
Defines the key for the noEdgeStyle style.
Defines the key for the noLabel style.
Defines the key for the opacity style.
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
Defines the key for the overflow style.
Defines the key for the perimeter style.
Defines the key for the perimeter spacing.
Defines the direction(s) that edges are allowed to connect to cells in.
Defines the key for the resizable style.
Defines the key for the rotation style.
Defines the key for the rounded style.
Defines the key for the horizontal routing center.
Defines the key for the vertical routing center.
Defines the key for the segment style.
Defines the key for the separatorColor style.
Defines the key for the shadow style.
Defines the key for the shape.
An experimental style for edges.
Defines the key for the source perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the source for an edge.
Defines the key for the spacing.
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingLeft style.
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
Defines the key for the spacingTop style.
Defines the key for the start arrow marker.
Defines the key for the startFill style.
Defines the key for the startSize style.
Defines the key for the horizontal stencil flip.
Defines the key for the vertical stencil flip.
Defines the key for the strokeColor style.
Defines the key for the strokeWidth style.
Defines the key for the target perimeter spacing.
Defines the ID of the cell that should be used for computing the perimeter point of the target for an edge.
Defines the key for the text opacity style.
Defines the key for the verticalAlign style.
Defines the key for the vertical label position of vertices.
Defines the key for the white-space style.
mxGraph.prototype.stylesheet
Holds the mxStylesheet that defines the appearance of the cells.
mxPopupMenu.prototype.submenuImage
URL of the image to be used for the submenu icon.
Specifies the event name for suspend.
mxOutline.prototype.suspended
Optional boolean flag to suspend updates.
mxShape.prototype.SVG_STROKE_TOLERANCE
Event-tolerance for SVG strokes (in px).
mxGraph.prototype.swimlaneIndicatorColorAttribute
The attribute used to find the color for the indicator if the indicator color is set to ‘swimlane’.
mxGraph.prototype.swimlaneNesting
Specifies if nesting of swimlanes is allowed.
mxEditor.prototype.swimlaneRequired
Specifies if new cells must be inserted into an existing swimlane.
mxGraph.prototype.swimlaneSelectionEnabled
Specifies if swimlanes should be selectable via the content if the mouse is released.
mxEditor.prototype.swimlaneSpacing
Specifies the spacing between swimlanes if automatic layout is turned on in layoutDiagram.
diff --git a/docs/js-api/index/Variables12.html b/docs/js-api/index/Variables12.html index 525fad8dc..d78ee1f47 100644 --- a/docs/js-api/index/Variables12.html +++ b/docs/js-api/index/Variables12.html @@ -11,13 +11,13 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 tapAndHoldDelay, mxConnectionHandler
 tapAndHoldEnabled, mxConnectionHandler
 tapAndHoldInProgress, mxConnectionHandler
 tapAndHoldTolerance, mxConnectionHandler
 tapAndHoldValid, mxConnectionHandler
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 terminalDistance, mxCellState
 text, mxCellState
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS, mxEvent
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TRACE, mxLog
 translate
 TRANSLATE, mxEvent
 TRANSLATE_CONTROL_POINTS, mxGeometry
 traverseAncestors, mxHierarchicalLayout
 trigger, mxCellEditor
 type, mxMultiplicity
 typeError, mxMultiplicity
U
 UNDO, mxEvent
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS, mxEvent
 UP, mxEvent
 UPDATE_CELL_SIZE, mxEvent
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateHandler, mxLayoutManager
 updateLevel, mxGraphModel
 updateOnPan, mxOutline
 updateStyle, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 table, mxForm
 tapAndHoldDelay, mxConnectionHandler
 tapAndHoldEnabled, mxConnectionHandler
 tapAndHoldInProgress, mxConnectionHandler
 tapAndHoldTolerance, mxConnectionHandler
 tapAndHoldValid, mxConnectionHandler
 target
 TARGET_HIGHLIGHT_COLOR, mxConstants
 targetConnectImage, mxConnectionHandler
 targetPoint, mxGeometry
 tasks, mxEditor
 tasksResource, mxEditor
 tasksTop, mxEditor
 tasksWindowImage, mxEditor
 temp, mxGraphAbstractHierarchyCell
 temperature, mxFastOrganicLayout
 template, mxObjectCodec
 templates, mxEditor
 terminalDistance, mxCellState
 text, mxCellState
 textarea, mxCellEditor
 textEnabled
 textNode, mxCellEditor
 thread, mxAnimation
 tightenToSource
 timerAutoScroll, mxGraph
 title
 TOGGLE_CELLS, mxEvent
 tolerance
 toolbar
 tooltip, mxCellOverlay
 TOOLTIP_VERTICAL_OFFSET, mxConstants
 TRACE, mxLog
 translate
 TRANSLATE, mxEvent
 TRANSLATE_CONTROL_POINTS, mxGeometry
 traverseAncestors, mxHierarchicalLayout
 trigger, mxCellEditor
 type, mxMultiplicity
 typeError, mxMultiplicity
U
 UNDO, mxEvent
 undoManager, mxEditor
 undone, mxUndoableEdit
 UNGROUP_CELLS, mxEvent
 UP, mxEvent
 UPDATE_CELL_SIZE, mxEvent
 updateCursor, mxGraphHandler
 updateDefaultMode, mxToolbar
 updateHandler, mxLayoutManager
 updateLevel, mxGraphModel
 updateOnPan, mxOutline
 updateStyle, mxGraphView
 updatingSelectionResource, mxGraphSelectionModel
 url, mxXmlRequest
 urlHelp, mxEditor
 urlImage, mxEditor
 urlInit
 urlNotify
 urlPoll
 urlPost, mxEditor
 useBoundingBox, mxGraphLayout
 useGrid, mxPanningHandler
 useInputOrigin, mxFastOrganicLayout
 useLeftButtonForPanning, mxPanningHandler
 useLeftButtonForPopup, mxPopupMenu
 usePopupTrigger, mxPanningHandler
 username, mxXmlRequest
 useScrollbarsForPanning, mxGraph
-
mxForm.prototype.table
Holds the DOM node that represents the table.
mxConnectionHandler.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxConnectionHandler.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxConnectionHandler.prototype.tapAndHoldTolerance
Specifies the tolerance for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
mxCellEditor.prototype.textarea
Holds the input textarea.
var textEnabled
Specifies if text output should be enabled.
var textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxPath.prototype.translate
mxPoint that specifies the translation of the complete path.
Specifies the event name for translate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to navigate edges whose terminal vertices have different parents but are in the same ancestry chain
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
+
mxForm.prototype.table
Holds the DOM node that represents the table.
mxConnectionHandler.prototype.tapAndHoldDelay
Specifies the time for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldEnabled
Specifies if tap and hold should be used for starting connections on touch-based devices.
mxConnectionHandler.prototype.tapAndHoldInProgress
True if the timer for tap and hold events is running.
mxConnectionHandler.prototype.tapAndHoldTolerance
Specifies the tolerance for a tap and hold.
mxConnectionHandler.prototype.tapAndHoldValid
True as long as the timer is running and the touch events stay within the given tapAndHoldTolerance.
mxCell.prototype.target
Reference to the target terminal.
mxGraphHierarchyEdge.prototype.target
The node this edge targets
mxKeyHandler.prototype.target
Reference to the target DOM, that is, the DOM node where the key event listeners are installed.
Defines the color to be used for highlighting a target cell for a new or changed connection.
mxConnectionHandler.prototype.targetConnectImage
Specifies if the connect icon should be centered on the target state while connections are being previewed.
mxGeometry.prototype.targetPoint
Defines the target mxPoint of the edge.
mxEditor.prototype.tasks
Holds the mxWindow created in showTasks.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.tasksTop
Specifies the top coordinate of the tasks window in pixels.
mxEditor.prototype.tasksWindowImage
Icon for the tasks window.
mxGraphAbstractHierarchyCell.prototype.temp
Temporary variable for general use.
mxFastOrganicLayout.prototype.temperature
Temperature to limit displacement at later stages of layout.
mxObjectCodec.prototype.template
Holds the template object associated with this codec.
mxEditor.prototype.templates
Maps from names to protoype cells to be used in the toolbar for inserting new cells into the diagram.
mxCellState.prototype.terminalDistance
Caches the distance between the end points for an edge.
mxCellState.prototype.text
Holds the mxText that represents the label of the cell.
mxCellEditor.prototype.textarea
Holds the input textarea.
var textEnabled
Specifies if text output should be enabled.
var textEnabled
Specifies if text output should be enabled.
mxCellEditor.prototype.textNode
Reference to the label DOM node that has been hidden.
mxAnimation.prototype.thread
Reference to the thread while the animation is running.
mxGraphHierarchyModel.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxHierarchicalLayout.prototype.tightenToSource
Whether or not to tighten the assigned ranks of vertices up towards the source cells.
mxGraph.prototype.timerAutoScroll
Specifies if timer-based autoscrolling should be used via mxPanningManager.
mxPrintPreview.prototype.title
Holds the title of the preview window.
mxWindow.prototype.title
Reference to the DOM node (TD) that contains the title.
Specifies the event name for toggleCells.
mxEdgeHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxGraph.prototype.tolerance
Tolerance for a move to be handled as a single click.
mxVertexHandler.prototype.tolerance
Optional tolerance for hit-detection in getHandleForEvent.
mxDefaultToolbar.prototype.toolbar
Holds the internal mxToolbar.
mxEditor.prototype.toolbar
Holds a mxDefaultToolbar for displaying the toolbar.
mxCellOverlay.prototype.tooltip
Holds the optional string to be used as the tooltip.
Defines the vertical offset for the tooltip.
Specified if the output for enter and leave should be visible in the console.
mxGraphView.prototype.translate
mxPoint that specifies the current translation.
mxPath.prototype.translate
mxPoint that specifies the translation of the complete path.
Specifies the event name for translate.
mxGeometry.prototype.TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
mxHierarchicalLayout.prototype.traverseAncestors
Whether or not to navigate edges whose terminal vertices have different parents but are in the same ancestry chain
mxCellEditor.prototype.trigger
Reference to the event that was used to start editing.
mxMultiplicity.prototype.type
Defines the type of the source or target terminal.
mxMultiplicity.prototype.typeError
Holds the localized error message to be displayed if the type of the neighbor for a connection does not match the rule.
-
Specifies the event name for undo.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Specifies the event name for up.
Specifies the event name for updateCellSize.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
+
Specifies the event name for undo.
mxEditor.prototype.undoManager
Holds an mxUndoManager for the command history.
mxUndoableEdit.prototype.undone
Specifies if this edit has been undone.
Specifies the event name for ungroupCells.
Specifies the event name for up.
Specifies the event name for updateCellSize.
mxGraphHandler.prototype.updateCursor
Specifies if a move cursor should be shown if the mouse is ove a movable cell.
mxToolbar.prototype.updateDefaultMode
Boolean indicating if the default mode should be the last selected switch mode or the first inserted switch mode.
mxLayoutManager.prototype.updateHandler
Holds the function that handles the endUpdate event.
mxGraphModel.prototype.updateLevel
Counter for the depth of nested transactions.
mxOutline.prototype.updateOnPan
Specifies if update should be called for mxEvent.PAN in the source graph.
mxGraphView.prototype.updateStyle
Specifies if the style should be updated in each validation step.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxXmlRequest.prototype.url
Holds the target URL of the request.
mxEditor.prototype.urlHelp
Specifies the URL to be used for the contents of the Online Help window.
mxEditor.prototype.urlImage
Specifies the URL to be used for creating a bitmap of the graph in the image action.
mxEditor.prototype.urlInit
Specifies the URL to be used for initializing the session.
mxSession.prototype.urlInit
URL to initialize the session.
mxEditor.prototype.urlNotify
Specifies the URL to be used for notifying the backend in the session.
mxSession.prototype.urlNotify
URL to send changes to the backend.
mxEditor.prototype.urlPoll
Specifies the URL to be used for polling in the session.
mxSession.prototype.urlPoll
URL for polling the backend.
mxEditor.prototype.urlPost
Specifies the URL to be used for posting the diagram to a backend in save.
mxGraphLayout.prototype.useBoundingBox
Boolean indicating if the bounding box of the label should be used if its available.
mxPanningHandler.prototype.useGrid
Specifies if the panning steps should be aligned to the grid size.
mxFastOrganicLayout.prototype.useInputOrigin
Specifies if the top left corner of the input cells should be the origin of the layout result.
mxPanningHandler.prototype.useLeftButtonForPanning
Specifies if panning should be active for the left mouse button.
mxPopupMenu.prototype.useLeftButtonForPopup
Specifies if popupmenus should be activated by clicking the left mouse button.
mxPanningHandler.prototype.usePopupTrigger
Specifies if the isPopupTrigger should also be used for panning.
mxXmlRequest.prototype.username
Specifies the username to be used for authentication.
mxGraph.prototype.useScrollbarsForPanning
Specifies if scrollbars should be used for panning in panGraph if any scrollbars are available.
diff --git a/docs/js-api/index/Variables13.html b/docs/js-api/index/Variables13.html index ea1266913..d0452cfee 100644 --- a/docs/js-api/index/Variables13.html +++ b/docs/js-api/index/Variables13.html @@ -11,25 +11,25 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validating, mxEditor
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 values, mxStyleRegistry
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper, mxGraphHierarchyModel
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalTextDegree, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleTargetState, mxCellState
 visited, WeightedCellSorter
 vmlNodes
 vmlScale
W
 w0, mxStencil
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 wnd, mxPrintPreview
 wrap, mxStackLayout
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoomFactor, mxGraph
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validating, mxEditor
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 values, mxStyleRegistry
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper, mxGraphHierarchyModel
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalTextDegree, mxText
 view
 visible
 visibleSourceState, mxCellState
 visibleTargetState, mxCellState
 visited, WeightedCellSorter
 vmlNodes
 vmlScale
W
 w0, mxStencil
 WARN, mxLog
 warningImage, mxGraph
 waypointsEnabled, mxConnectionHandler
 weightedValue, WeightedCellSorter
 widestRank, mxCoordinateAssignment
 widestRankValue, mxCoordinateAssignment
 width
 wnd, mxPrintPreview
 wrap, mxStackLayout
X
 x
 x0
Y
 y
 y0
Z
 zIndex
 zoomFactor, mxGraph
-
Defines the color to be used for the coloring valid connection previews.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxText.prototype.verticalTextDegree
Specifies the degree to be used for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
mxConnector.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxCylinder.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxDoubleEllipse.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLabel.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLine.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxShape.prototype.vmlNodes
Array if VML node names to fix in IE8 standards mode.
mxSwimlane.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxActor.prototype.vmlScale
Renders VML with a scale of 2.
mxCylinder.prototype.vmlScale
Renders VML with a scale of 2.
mxDoubleEllipse.prototype.vmlScale
Renders VML with a scale of 2.
mxShape.prototype.vmlScale
Internal scaling for VML using coordsize for better precision.
mxStencilShape.prototype.vmlScale
Renders VML with a scale of 4.
+
Defines the color to be used for the coloring valid connection previews.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
Maps from strings to objects.
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
Defines the color to be used for the selection border of vertices.
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxText.prototype.verticalTextDegree
Specifies the degree to be used for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
mxConnector.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxCylinder.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxDoubleEllipse.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLabel.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxLine.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxShape.prototype.vmlNodes
Array if VML node names to fix in IE8 standards mode.
mxSwimlane.prototype.vmlNodes
Adds local references to mxShape.vmlNodes.
mxActor.prototype.vmlScale
Renders VML with a scale of 2.
mxCylinder.prototype.vmlScale
Renders VML with a scale of 2.
mxDoubleEllipse.prototype.vmlScale
Renders VML with a scale of 2.
mxShape.prototype.vmlScale
Internal scaling for VML using coordsize for better precision.
mxStencilShape.prototype.vmlScale
Renders VML with a scale of 4.
-
mxStencil.prototype.w0
Holds the width of the shape.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
+
mxStencil.prototype.w0
Holds the width of the shape.
Specifies if the output for warn should be visible in the console.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
mxConnectionHandler.prototype.waypointsEnabled
Specifies if single clicks should add waypoints on the new edge.
WeightedCellSorter.prototype.weightedValue
The weighted value of the cell stored.
mxCoordinateAssignment.prototype.widestRank
The rank that has the widest x position
mxCoordinateAssignment.prototype.widestRankValue
The X-coordinate of the edge of the widest rank
mxGraphAbstractHierarchyCell.prototype.width
The width of this cell
mxImage.prototype.width
Integer that specifies the width of the image.
mxRectangle.prototype.width
Holds the width of the rectangle.
mxPrintPreview.prototype.wnd
Reference to the preview window.
mxStackLayout.prototype.wrap
Value at which a new column or row should be created.
-
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.x
The x position of this cell for each layer it occupies
mxPoint.prototype.x
Holds the x-coordinate of the point.
mxCircleLayout.prototype.x0
Integer specifying the left coordinate of the circle.
mxStackLayout.prototype.x0
Specifies the horizontal origin of the layout.
-
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
+
mxGraphAbstractHierarchyCell.prototype.y
The y position of this cell for each layer it occupies
mxPoint.prototype.y
Holds the y-coordinate of the point.
mxCircleLayout.prototype.y0
Integer specifying the top coordinate of the circle.
mxPrintPreview.prototype.y0
Holds the vertical offset of the output.
mxStackLayout.prototype.y0
Specifies the vertical origin of the layout.
-
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
+
mxPopupMenu.prototype.zIndex
Specifies the zIndex for the popupmenu and its shadow.
mxTooltipHandler.prototype.zIndex
Specifies the zIndex for the tooltip and its shadow.
mxGraph.prototype.zoomFactor
Specifies the factor used for zoomIn and zoomOut.
diff --git a/docs/js-api/index/Variables6.html b/docs/js-api/index/Variables6.html index 739436765..80fa917a5 100644 --- a/docs/js-api/index/Variables6.html +++ b/docs/js-api/index/Variables6.html @@ -11,17 +11,17 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 id, mxCell
 idrefs, mxObjectCodec
 ieVerticalFilter, mxText
 ignoreCell, mxPanningHandler
 ignoredChanges, mxAutoSaveManager
 ignoreMouseDown, mxConnectionHandler
 ignoreScrollbars, mxGraph
 image, mxCellOverlay
 imageBasePath
 imageBundles, mxGraph
 images, mxImageBundle
 imageSize
 importEnabled, mxGraph
 includeOverlays, mxImageExport
 index, mxVertexHandler
 indexOfNextAdd, mxUndoManager
 indicatorSize, mxLabel
 indicatorSpacing, mxLabel
 indices, mxFastOrganicLayout
 init, mxDefaultToolbar
 initialTemp, mxFastOrganicLayout
 initialTouchX, mxConnectionHandler
 initialTouchY, mxConnectionHandler
 initialX, mxCoordinateAssignment
 innerNode, mxShape
 insertCount, mxClipboard
 insertFunction, mxEditor
 interHierarchySpacing, mxHierarchicalLayout
 interRankCellSpacing
 intraCellSpacing
 invalid, mxCellState
 INVALID_COLOR, mxConstants
 INVALID_CONNECT_TARGET_COLOR, mxConstants
 invalidColor, mxCellMarker
 invalidOrder, mxCellState
 invert, mxCompactTreeLayout
 invokesStopCellEditing, mxGraph
 IS_GC, mxClient
 IS_IE, mxClient
 IS_IE6, mxClient
 IS_LOCAL, mxClient
 IS_MAC, mxClient
 IS_MT, mxClient
 IS_NS, mxClient
 IS_OP, mxClient
 IS_OT, mxClient
 IS_SF, mxClient
 IS_SVG, mxClient
 IS_TOUCH, mxClient
 IS_VML, mxClient
 isMouseDown, mxGraph
 isMoveable, mxFastOrganicLayout
 isReversed, mxGraphHierarchyEdge
 itemCount, mxPopupMenu
 iteration, mxFastOrganicLayout
 iterationsWithoutImprovement, mxMedianHybridCrossingReduction
J
 jettyPositions, mxCoordinateAssignment
K
 keepEdgesInBackground, mxGraph
 keepEdgesInForeground, mxGraph
 keepFirstLocation, mxStackLayout
 keepOnTop, mxCellHighlight
 keepSelectionVisibleOnZoom, mxGraph
 keyHandler, mxEditor
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 id, mxCell
 idrefs, mxObjectCodec
 ieVerticalFilter, mxText
 ignoreCell, mxPanningHandler
 ignoredChanges, mxAutoSaveManager
 ignoreMouseDown, mxConnectionHandler
 ignoreScrollbars, mxGraph
 image, mxCellOverlay
 imageBasePath
 imageBundles, mxGraph
 images, mxImageBundle
 imageSize
 importEnabled, mxGraph
 includeOverlays, mxImageExport
 index, mxVertexHandler
 indexOfNextAdd, mxUndoManager
 indicatorSize, mxLabel
 indicatorSpacing, mxLabel
 indices, mxFastOrganicLayout
 init, mxDefaultToolbar
 initialTemp, mxFastOrganicLayout
 initialTouchX, mxConnectionHandler
 initialTouchY, mxConnectionHandler
 initialX, mxCoordinateAssignment
 innerNode, mxShape
 insertCount, mxClipboard
 insertFunction, mxEditor
 interHierarchySpacing, mxHierarchicalLayout
 interRankCellSpacing
 intraCellSpacing
 invalid, mxCellState
 INVALID_COLOR, mxConstants
 INVALID_CONNECT_TARGET_COLOR, mxConstants
 invalidColor, mxCellMarker
 invalidOrder, mxCellState
 invert, mxCompactTreeLayout
 invokesStopCellEditing, mxGraph
 IS_GC, mxClient
 IS_IE, mxClient
 IS_IE6, mxClient
 IS_LOCAL, mxClient
 IS_MAC, mxClient
 IS_MT, mxClient
 IS_NS, mxClient
 IS_OP, mxClient
 IS_OT, mxClient
 IS_QUIRKS, mxClient
 IS_SF, mxClient
 IS_SVG, mxClient
 IS_TOUCH, mxClient
 IS_VML, mxClient
 isMouseDown, mxGraph
 isMoveable, mxFastOrganicLayout
 isReversed, mxGraphHierarchyEdge
 itemCount, mxPopupMenu
 iteration, mxFastOrganicLayout
 iterationsWithoutImprovement, mxMedianHybridCrossingReduction
J
 jettyPositions, mxCoordinateAssignment
K
 keepEdgesInBackground, mxGraph
 keepEdgesInForeground, mxGraph
 keepFirstLocation, mxStackLayout
 keepOnTop, mxCellHighlight
 keepSelectionVisibleOnZoom, mxGraph
 keyHandler, mxEditor
-
mxCell.prototype.id
Holds the Id.
mxObjectCodec.prototype.idrefs
Array containing the variable names that should be turned into or converted from references.
mxText.prototype.ieVerticalFilter
Holds the filter definition for vertical text in IE.
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxAutoSaveManager.prototype.ignoredChanges
Counter for ignored changes in autosave.
mxConnectionHandler.prototype.ignoreMouseDown
Specifies if the connection handler should ignore the state of the mouse button when highlighting the source.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxCellOverlay.prototype.image
Holds the mxImage to be used as the icon.
Basepath for all images URLs in the core without trailing slash.
mxDefaultPopupMenu.prototype.imageBasePath
Base path for all icon attributes in the config.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxImageBundle.prototype.images
Maps from keys to images.
mxLabel.prototype.imageSize
Default width and height for the image.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
mxImageExport.prototype.includeOverlays
Specifies if overlays should be included in the export.
mxVertexHandler.prototype.index
Holds the index of the current handle.
mxUndoManager.prototype.indexOfNextAdd
Index of the element to be added next.
mxLabel.prototype.indicatorSize
Default width and height for the indicicator.
mxLabel.prototype.indicatorSpacing
Default spacing between image and indicator.
mxFastOrganicLayout.prototype.indices
Hashtable from cells to local indices.
mxDefaultToolbar.prototype.init
Constructs the toolbar for the given container and installs a listener that updates the mxEditor.insertFunction on editor if an item is selected in the toolbar.
mxFastOrganicLayout.prototype.initialTemp
Start value of temperature.
mxConnectionHandler.prototype.initialTouchX
Holds the x-coordinate of the intial touch event for tap and hold.
mxConnectionHandler.prototype.initialTouchY
Holds the y-coordinate of the intial touch event for tap and hold.
mxCoordinateAssignment.prototype.initialX
The minimum x position node placement starts at
mxShape.prototype.innerNode
Holds the DOM node that graphically represents this shape.
Counts the number of times the clipboard data has been inserted.
mxEditor.prototype.insertFunction
Specifies the function to be used for inserting new cells into the graph.
mxHierarchicalLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxCoordinateAssignment.prototype.interRankCellSpacing
The minimum distance between cells on adjacent ranks.
mxHierarchicalLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
mxCoordinateAssignment.prototype.intraCellSpacing
The minimum buffer between cells on the same rank.
mxHierarchicalLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxCellState.prototype.invalid
Specifies if the state is invalid.
Defines the color to be used for the coloring invalid connection previews.
Defines the color to be used for highlighting a invalid target cells for a new or changed connections.
mxCellMarker.prototype.invalidColor
Holds the invalid marker color.
mxCellState.prototype.invalidOrder
Specifies if the cell has an invalid order.
mxCompactTreeLayout.prototype.invert
Specifies if edge directions should be inverted.
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
True if the documents location does not start with http:// or https://.
True if the client is a Mac.
True if -moz-transform is available as a CSS style.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
True if -o-transform is available as a CSS style.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
True if this client uses a touch interface (no mouse).
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
mxFastOrganicLayout.prototype.isMoveable
Array of booleans representing the movable states of the vertices.
mxGraphHierarchyEdge.prototype.isReversed
Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout
mxPopupMenu.prototype.itemCount
Contains the number of times addItem has been called for a new menu.
mxFastOrganicLayout.prototype.iteration
Current iteration count.
mxMedianHybridCrossingReduction.prototype.iterationsWithoutImprovement
The total number of crossings found in the best configuration so far
+
mxCell.prototype.id
Holds the Id.
mxObjectCodec.prototype.idrefs
Array containing the variable names that should be turned into or converted from references.
mxText.prototype.ieVerticalFilter
Holds the filter definition for vertical text in IE.
mxPanningHandler.prototype.ignoreCell
Specifies if panning should be active even if there is a cell under the mousepointer.
mxAutoSaveManager.prototype.ignoredChanges
Counter for ignored changes in autosave.
mxConnectionHandler.prototype.ignoreMouseDown
Specifies if the connection handler should ignore the state of the mouse button when highlighting the source.
mxGraph.prototype.ignoreScrollbars
Specifies if the graph should automatically scroll regardless of the scrollbars.
mxCellOverlay.prototype.image
Holds the mxImage to be used as the icon.
Basepath for all images URLs in the core without trailing slash.
mxDefaultPopupMenu.prototype.imageBasePath
Base path for all icon attributes in the config.
mxGraph.prototype.imageBundles
Holds the list of image bundles.
mxImageBundle.prototype.images
Maps from keys to images.
mxLabel.prototype.imageSize
Default width and height for the image.
mxSwimlane.prototype.imageSize
Default imagewidth and imageheight if an image but no imagewidth and imageheight are defined in the style.
mxGraph.prototype.importEnabled
Specifies the return value for canImportCell.
mxImageExport.prototype.includeOverlays
Specifies if overlays should be included in the export.
mxVertexHandler.prototype.index
Holds the index of the current handle.
mxUndoManager.prototype.indexOfNextAdd
Index of the element to be added next.
mxLabel.prototype.indicatorSize
Default width and height for the indicicator.
mxLabel.prototype.indicatorSpacing
Default spacing between image and indicator.
mxFastOrganicLayout.prototype.indices
Hashtable from cells to local indices.
mxDefaultToolbar.prototype.init
Constructs the toolbar for the given container and installs a listener that updates the mxEditor.insertFunction on editor if an item is selected in the toolbar.
mxFastOrganicLayout.prototype.initialTemp
Start value of temperature.
mxConnectionHandler.prototype.initialTouchX
Holds the x-coordinate of the intial touch event for tap and hold.
mxConnectionHandler.prototype.initialTouchY
Holds the y-coordinate of the intial touch event for tap and hold.
mxCoordinateAssignment.prototype.initialX
The minimum x position node placement starts at
mxShape.prototype.innerNode
Holds the DOM node that graphically represents this shape.
Counts the number of times the clipboard data has been inserted.
mxEditor.prototype.insertFunction
Specifies the function to be used for inserting new cells into the graph.
mxHierarchicalLayout.prototype.interHierarchySpacing
The spacing buffer between unconnected hierarchies.
mxCoordinateAssignment.prototype.interRankCellSpacing
The minimum distance between cells on adjacent ranks.
mxHierarchicalLayout.prototype.interRankCellSpacing
The spacing buffer added between cell on adjacent layers.
mxCoordinateAssignment.prototype.intraCellSpacing
The minimum buffer between cells on the same rank.
mxHierarchicalLayout.prototype.intraCellSpacing
The spacing buffer added between cells on the same layer.
mxCellState.prototype.invalid
Specifies if the state is invalid.
Defines the color to be used for the coloring invalid connection previews.
Defines the color to be used for highlighting a invalid target cells for a new or changed connections.
mxCellMarker.prototype.invalidColor
Holds the invalid marker color.
mxCellState.prototype.invalidOrder
Specifies if the cell has an invalid order.
mxCompactTreeLayout.prototype.invert
Specifies if edge directions should be inverted.
mxGraph.prototype.invokesStopCellEditing
If true, when editing is to be stopped by way of selection changing, data in diagram changing or other means stopCellEditing is invoked, and changes are saved.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
True if the documents location does not start with http:// or https://.
True if the client is a Mac.
True if -moz-transform is available as a CSS style.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
True if -o-transform is available as a CSS style.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_SVG: navigator.userAgent.indexOf('Firefox/') >
True if the browser supports SVG.
True if this client uses a touch interface (no mouse).
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
mxGraph.prototype.isMouseDown
Holds the state of the mouse button.
mxFastOrganicLayout.prototype.isMoveable
Array of booleans representing the movable states of the vertices.
mxGraphHierarchyEdge.prototype.isReversed
Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout
mxPopupMenu.prototype.itemCount
Contains the number of times addItem has been called for a new menu.
mxFastOrganicLayout.prototype.iteration
Current iteration count.
mxMedianHybridCrossingReduction.prototype.iterationsWithoutImprovement
The total number of crossings found in the best configuration so far
-
mxCoordinateAssignment.prototype.jettyPositions
Map of internal edges and (x,y) pair of positions of the start and end jetty for that edge where it connects to the source and target vertices.
+
mxCoordinateAssignment.prototype.jettyPositions
Map of internal edges and (x,y) pair of positions of the start and end jetty for that edge where it connects to the source and target vertices.
-
mxGraph.prototype.keepEdgesInBackground
Specifies if edges should appear in the background regardless of their order in the model.
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxStackLayout.prototype.keepFirstLocation
Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxEditor.prototype.keyHandler
Holds a mxDefaultKeyHandler for handling keyboard events.
+
mxGraph.prototype.keepEdgesInBackground
Specifies if edges should appear in the background regardless of their order in the model.
mxGraph.prototype.keepEdgesInForeground
Specifies if edges should appear in the foreground regardless of their order in the model.
mxStackLayout.prototype.keepFirstLocation
Boolean indicating if the location of the first cell should be kept, that is, it will not be moved to x0 or y0.
mxCellHighlight.prototype.keepOnTop
Specifies if the highlights should appear on top of everything else in the overlay pane.
mxGraph.prototype.keepSelectionVisibleOnZoom
Specifies if the viewport should automatically contain the selection cells after a zoom operation.
mxEditor.prototype.keyHandler
Holds a mxDefaultKeyHandler for handling keyboard events.
diff --git a/docs/js-api/index/Variables7.html b/docs/js-api/index/Variables7.html index 75ba37b46..5a7b9e026 100644 --- a/docs/js-api/index/Variables7.html +++ b/docs/js-api/index/Variables7.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
L
 label, mxShape
 LABEL_CHANGED, mxEvent
 LABEL_HANDLE, mxEvent
 LABEL_HANDLE_FILLCOLOR, mxConstants
 LABEL_HANDLE_SIZE, mxConstants
 labels, mxPopupMenu
 labelShape, mxEdgeHandler
 labelsVisible, mxGraph
 language, mxClient
 languages, mxClient
 lastSavedResource, mxEditor
 lastSnapshot, mxAutoSaveManager
 lastTouchTime, mxGraph
 lastTouchX, mxGraph
 layout
 LAYOUT_CELLS, mxEvent
 layoutDiagram, mxEditor
 layoutFromSinks, mxHierarchicalLayout
 layouts, mxCompositeLayout
 layoutSwimlanes, mxEditor
 length, mxCellState
 levelDistance, mxCompactTreeLayout
 limitX, mxCoordinateAssignment
 LINE_ARCSIZE, mxConstants
 linefeed, mxSession
 lineFeed, mxEditor
 loadDefaultBundle, mxResources
 LOCKED_HANDLE_FILLCOLOR, mxConstants
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
L
 label, mxShape
 LABEL_CHANGED, mxEvent
 LABEL_HANDLE, mxEvent
 LABEL_HANDLE_FILLCOLOR, mxConstants
 LABEL_HANDLE_SIZE, mxConstants
 labels, mxPopupMenu
 labelShape, mxEdgeHandler
 labelsVisible, mxGraph
 language, mxClient
 languages, mxClient
 lastSavedResource, mxEditor
 lastSnapshot, mxAutoSaveManager
 lastTouchTime, mxGraph
 lastTouchX, mxGraph
 layout
 LAYOUT_CELLS, mxEvent
 layoutDiagram, mxEditor
 layoutFromSinks, mxHierarchicalLayout
 layouts, mxCompositeLayout
 layoutSwimlanes, mxEditor
 length, mxCellState
 levelDistance, mxCompactTreeLayout
 limitX, mxCoordinateAssignment
 LINE_ARCSIZE, mxConstants
 linefeed, mxSession
 lineFeed, mxEditor
 loadDefaultBundle, mxResources
 LOCKED_HANDLE_FILLCOLOR, mxConstants
-
mxShape.prototype.label
Reference to the DOM node that should contain the label.
Specifies the event name for labelChanged.
Index for the label handle in an mxMouseEvent.
Defines the color to be used for the label handle fill color.
Defines the default size for label handles.
mxPopupMenu.prototype.labels
Specifies if any labels should be visible.
mxEdgeHandler.prototype.labelShape
Holds the mxShape that represents the label position.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
Defines the language of the client, eg.
Defines the optional array of all supported language extensions.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxAutoSaveManager.prototype.lastSnapshot
Used for autosaving.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
Holds the x-coordinate of the last touch event for double tap detection.
mxCoordinateAssignment.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMedianHybridCrossingReduction.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMinimumCycleRemover.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
Specifies the event name for layoutCells.
mxEditor.prototype.layoutDiagram
Specifies if the top-level elements in the diagram should be layed out using a vertical or horizontal stack depending on the setting of horizontalFlow.
mxHierarchicalLayout.prototype.layoutFromSinks
Whether or not the initial scan of the graph to determine the layer assigned to each vertex starts from the sinks or source (the sinks being vertices with the fewest, preferable zero, outgoing edges and sources same with incoming edges).
mxCompositeLayout.prototype.layouts
Holds the array of mxGraphLayouts that this layout contains.
mxEditor.prototype.layoutSwimlanes
Specifies if the children of swimlanes should be layed out, either vertically or horizontally depending on horizontalFlow.
mxCellState.prototype.length
Caches the length of an edge.
mxCompactTreeLayout.prototype.levelDistance
Holds the levelDistance.
mxCoordinateAssignment.prototype.limitX
The maximum x value this positioning lays up to
Defines the size of the arcs for rounded edges.
mxSession.prototype.linefeed
Used for encoding linefeeds.
Character to be used for encoding linefeeds in save.
Specifies if the default file for a given basename should be loaded.
Defines the color to be used for the locked handle fill color.
+
mxShape.prototype.label
Reference to the DOM node that should contain the label.
Specifies the event name for labelChanged.
Index for the label handle in an mxMouseEvent.
Defines the color to be used for the label handle fill color.
Defines the default size for label handles.
mxPopupMenu.prototype.labels
Specifies if any labels should be visible.
mxEdgeHandler.prototype.labelShape
Holds the mxShape that represents the label position.
mxGraph.prototype.labelsVisible
Specifies if labels should be visible.
Defines the language of the client, eg.
Defines the optional array of all supported language extensions.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxAutoSaveManager.prototype.lastSnapshot
Used for autosaving.
mxGraph.prototype.lastTouchTime
Holds the time of the last touch event for double click detection.
Holds the x-coordinate of the last touch event for double tap detection.
mxCoordinateAssignment.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMedianHybridCrossingReduction.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
mxMinimumCycleRemover.prototype.layout
Reference to the enclosing mxHierarchicalLayout.
Specifies the event name for layoutCells.
mxEditor.prototype.layoutDiagram
Specifies if the top-level elements in the diagram should be layed out using a vertical or horizontal stack depending on the setting of horizontalFlow.
mxHierarchicalLayout.prototype.layoutFromSinks
Whether or not the initial scan of the graph to determine the layer assigned to each vertex starts from the sinks or source (the sinks being vertices with the fewest, preferable zero, outgoing edges and sources same with incoming edges).
mxCompositeLayout.prototype.layouts
Holds the array of mxGraphLayouts that this layout contains.
mxEditor.prototype.layoutSwimlanes
Specifies if the children of swimlanes should be layed out, either vertically or horizontally depending on horizontalFlow.
mxCellState.prototype.length
Caches the length of an edge.
mxCompactTreeLayout.prototype.levelDistance
Holds the levelDistance.
mxCoordinateAssignment.prototype.limitX
The maximum x value this positioning lays up to
Defines the size of the arcs for rounded edges.
mxSession.prototype.linefeed
Used for encoding linefeeds.
Character to be used for encoding linefeeds in save.
Specifies if the default file for a given basename should be loaded.
Defines the color to be used for the locked handle fill color.
diff --git a/docs/js-api/index/Variables8.html b/docs/js-api/index/Variables8.html index 1160f257f..a5897f241 100644 --- a/docs/js-api/index/Variables8.html +++ b/docs/js-api/index/Variables8.html @@ -11,9 +11,9 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 maintainSwimlanes, mxEditor
 mapping, mxObjectCodec
 MARK, mxEvent
 markedState, mxCellMarker
 marker
 markers
 max, mxMultiplicity
 MAX_HOTSPOT_SIZE, mxConstants
 maxCells, mxGraphHandler
 maxFitScale, mxGraph
 maxHandlers, mxSelectionCellsHandler
 maxHeight, mxCylinder
 MAXIMIZE, mxEvent
 maximizeImage, mxWindow
 maximumContainerSize, mxGraph
 maximumGraphBounds, mxGraph
 maxIterations
 maxNoImprovementIterations, mxMedianHybridCrossingReduction
 maxRank
 medianValue, MedianCellSorter
 method, mxXmlRequest
 min, mxMultiplicity
 MIN_HOTSPOT_SIZE, mxConstants
 minDistanceLimit, mxFastOrganicLayout
 minDistanceLimitSquared, mxFastOrganicLayout
 minEdgeJetty
 minFitScale, mxGraph
 MINIMIZE, mxEvent
 minimizeImage, mxWindow
 minimumContainerSize, mxGraph
 minimumGraphSize, mxGraph
 minimumSize
 minPageBreakDist, mxGraph
 minRank, mxGraphAbstractHierarchyCell
 mixedModeHtml
 model
 modified
 MOUSE_DOWN, mxEvent
 MOUSE_MOVE, mxEvent
 MOUSE_UP, mxEvent
 mouseDownCounter, mxConnectionHandler
 mouseListeners, mxGraph
 MOVE, mxEvent
 MOVE_CELLS, mxEvent
 MOVE_END, mxEvent
 MOVE_START, mxEvent
 moveCircle, mxCircleLayout
 moveEnabled, mxGraphHandler
 moveHandler
 moveIconBack, mxConnectionHandler
 moveIconFront, mxConnectionHandler
 moveParent, mxHierarchicalLayout
 movePreviewAway, mxConnectionHandler
 movePropertiesDialog, mxEditor
 moveTree, mxCompactTreeLayout
 multigraph, mxGraph
 multiplicities, mxGraph
 mxLoadResources, mxClient
 mxLoadStylesheets, mxClient
 mxTransient, mxCell
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 maintainSwimlanes, mxEditor
 mapping, mxObjectCodec
 MARK, mxEvent
 markedState, mxCellMarker
 marker
 markers
 max, mxMultiplicity
 MAX_HOTSPOT_SIZE, mxConstants
 maxCells, mxGraphHandler
 maxFitScale, mxGraph
 maxHandlers, mxSelectionCellsHandler
 maxHeight, mxCylinder
 MAXIMIZE, mxEvent
 maximizeImage, mxWindow
 maximumContainerSize, mxGraph
 maximumGraphBounds, mxGraph
 maxIterations
 maxNoImprovementIterations, mxMedianHybridCrossingReduction
 maxRank
 medianValue, MedianCellSorter
 method, mxXmlRequest
 min, mxMultiplicity
 MIN_HOTSPOT_SIZE, mxConstants
 minDistanceLimit, mxFastOrganicLayout
 minDistanceLimitSquared, mxFastOrganicLayout
 minEdgeJetty
 minFitScale, mxGraph
 MINIMIZE, mxEvent
 minimizeImage, mxWindow
 minimumContainerSize, mxGraph
 minimumGraphSize, mxGraph
 minimumSize
 minPageBreakDist, mxGraph
 minRank, mxGraphAbstractHierarchyCell
 mixedModeHtml
 model
 modified
 MOUSE_DOWN, mxEvent
 MOUSE_MOVE, mxEvent
 MOUSE_UP, mxEvent
 mouseDownCounter, mxConnectionHandler
 mouseListeners, mxGraph
 MOVE, mxEvent
 MOVE_CELLS, mxEvent
 MOVE_END, mxEvent
 MOVE_START, mxEvent
 moveCircle, mxCircleLayout
 moveEnabled, mxGraphHandler
 moveHandler
 moveIconBack, mxConnectionHandler
 moveIconFront, mxConnectionHandler
 moveParent, mxHierarchicalLayout
 movePreviewAway, mxConnectionHandler
 movePropertiesDialog, mxEditor
 moveTree, mxCompactTreeLayout
 multigraph, mxGraph
 multiplicities, mxGraph
 mxLoadResources, mxClient
 mxLoadStylesheets, mxClient
 mxTransient, mxCell
-
mxGraphModel.prototype.maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
mxEditor.prototype.maintainSwimlanes
Specifies if the swimlanes should be kept at the same width or height depending on the setting of horizontalFlow.
mxObjectCodec.prototype.mapping
Maps from from fieldnames to XML attribute names.
Specifies the event name for mark.
mxCellMarker.prototype.markedState
Holds the marked mxCellState.
mxConnectionHandler.prototype.marker
Holds the mxTerminalMarker used for finding source and target cells.
mxEdgeHandler.prototype.marker
Holds the mxTerminalMarker which is used for highlighting terminals.
mxImageExport.prototype.markers
Holds implementations for the built-in markers.
Maps from markers names to functions to paint the markers.
mxMultiplicity.prototype.max
Defines the maximum number of connections for which this rule applies.
Defines the maximum size in pixels of the portion of the cell which is to be used as a connectable region.
mxGraphHandler.prototype.maxCells
Defines the maximum number of cells to paint subhandles for.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxSelectionCellsHandler.prototype.maxHandlers
Defines the maximum number of handlers to paint individually.
mxCylinder.prototype.maxHeight
Defines the maximum height of the top and bottom part of the cylinder shape.
Specifies the event name for maximize.
mxWindow.prototype.maximizeImage
URL of the image to be used for the maximize icon in the titlebar.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
mxCoordinateAssignment.prototype.maxIterations
The number of heuristic iterations to run.
mxFastOrganicLayout.prototype.maxIterations
Total number of iterations to run the layout though.
mxMedianHybridCrossingReduction.prototype.maxIterations
The maximum number of iterations to perform whilst reducing edge crossings.
mxMedianHybridCrossingReduction.prototype.maxNoImprovementIterations
The total number of crossings found in the best configuration so far
mxGraphAbstractHierarchyCell.prototype.maxRank
The maximum rank this cell occupies.
mxGraphHierarchyModel.prototype.maxRank
Stores the largest rank number allocated
MedianCellSorter.prototype.medianValue
The weighted value of the cell stored.
mxXmlRequest.prototype.method
Specifies the request method.
mxMultiplicity.prototype.min
Defines the minimum number of connections for which this rule applies.
Defines the minimum size in pixels of the portion of the cell which is to be used as a connectable region.
mxFastOrganicLayout.prototype.minDistanceLimit
Minimal distance limit.
mxFastOrganicLayout.prototype.minDistanceLimitSquared
Cached version of minDistanceLimit squared.
mxCompactTreeLayout.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxCoordinateAssignment.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
Specifies the event name for minimize.
mxWindow.prototype.minimizeImage
URL of the image to be used for the minimize icon in the titlebar.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraphHandler.prototype.minimumSize
Specifies the minimum number of pixels for the width and height of a selection border.
mxWindow.prototype.minimumSize
mxRectangle that specifies the minimum width and height of the window.
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxGraphAbstractHierarchyCell.prototype.minRank
The minimum rank this cell occupies.
mxActor.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxConnector.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxCylinder.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxDoubleEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxLine.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxRhombus.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxShape.prototype.mixedModeHtml
Specifies if createHtml should be used in mixed Html mode.
mxStencilShape.prototype.mixedModeHtml
Always prefers VML in mixed mode for stencil shapes.
mxSwimlane.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
mxHierarchicalLayout.prototype.model
The internal mxGraphHierarchyModel formed of the layout.
mxSession.prototype.model
Reference to the enclosing mxGraphModel.
mxCellEditor.prototype.modified
Specifies if the label has been modified.
mxEditor.prototype.modified
True if the graph has been modified since it was last saved.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
mxConnectionHandler.prototype.mouseDownCounter
Counts the number of mouseDown events since the start.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
Specifies the event name for move.
Specifies the event name for moveCells.
Specifies the event name for moveEnd.
Specifies the event name for moveStart.
mxCircleLayout.prototype.moveCircle
Boolean specifying if the circle should be moved to the top, left corner specified by x0 and y0.
mxGraphHandler.prototype.moveEnabled
Specifies if moving is enabled.
mxLayoutManager.prototype.moveHandler
Holds the function that handles the move event.
Holds the function that handles the move event.
mxConnectionHandler.prototype.moveIconBack
Specifies if icons should be moved to the back of the overlay pane.
mxConnectionHandler.prototype.moveIconFront
Specifies if icons should be displayed inside the graph container instead of the overlay pane.
mxHierarchicalLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxConnectionHandler.prototype.movePreviewAway
Switch to enable moving the preview away from the mousepointer.
mxEditor.prototype.movePropertiesDialog
Specifies if the properties dialog should be automatically moved near the cell it is displayed for, otherwise the dialog is not moved.
mxCompactTreeLayout.prototype.moveTree
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
Optional global config variable to toggle loading of the CSS files when the library is initialized.
mxCell.prototype.mxTransient
List of members that should not be cloned inside clone.
+
mxGraphModel.prototype.maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
mxEditor.prototype.maintainSwimlanes
Specifies if the swimlanes should be kept at the same width or height depending on the setting of horizontalFlow.
mxObjectCodec.prototype.mapping
Maps from from fieldnames to XML attribute names.
Specifies the event name for mark.
mxCellMarker.prototype.markedState
Holds the marked mxCellState.
mxConnectionHandler.prototype.marker
Holds the mxTerminalMarker used for finding source and target cells.
mxEdgeHandler.prototype.marker
Holds the mxTerminalMarker which is used for highlighting terminals.
mxImageExport.prototype.markers
Holds implementations for the built-in markers.
Maps from markers names to functions to paint the markers.
mxMultiplicity.prototype.max
Defines the maximum number of connections for which this rule applies.
Defines the maximum size in pixels of the portion of the cell which is to be used as a connectable region.
mxGraphHandler.prototype.maxCells
Defines the maximum number of cells to paint subhandles for.
mxGraph.prototype.maxFitScale
Specifies the maximum scale to be applied in fit.
mxSelectionCellsHandler.prototype.maxHandlers
Defines the maximum number of handlers to paint individually.
mxCylinder.prototype.maxHeight
Defines the maximum height of the top and bottom part of the cylinder shape.
Specifies the event name for maximize.
mxWindow.prototype.maximizeImage
URL of the image to be used for the maximize icon in the titlebar.
mxGraph.prototype.maximumContainerSize
mxRectangle that specifies the maximum size of the container if resizeContainer is true.
mxGraph.prototype.maximumGraphBounds
mxRectangle that specifies the area in which all cells in the diagram should be placed.
mxCoordinateAssignment.prototype.maxIterations
The number of heuristic iterations to run.
mxFastOrganicLayout.prototype.maxIterations
Total number of iterations to run the layout though.
mxMedianHybridCrossingReduction.prototype.maxIterations
The maximum number of iterations to perform whilst reducing edge crossings.
mxMedianHybridCrossingReduction.prototype.maxNoImprovementIterations
The total number of crossings found in the best configuration so far
mxGraphAbstractHierarchyCell.prototype.maxRank
The maximum rank this cell occupies.
mxGraphHierarchyModel.prototype.maxRank
Stores the largest rank number allocated
MedianCellSorter.prototype.medianValue
The weighted value of the cell stored.
mxXmlRequest.prototype.method
Specifies the request method.
mxMultiplicity.prototype.min
Defines the minimum number of connections for which this rule applies.
Defines the minimum size in pixels of the portion of the cell which is to be used as a connectable region.
mxFastOrganicLayout.prototype.minDistanceLimit
Minimal distance limit.
mxFastOrganicLayout.prototype.minDistanceLimitSquared
Cached version of minDistanceLimit squared.
mxCompactTreeLayout.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxCoordinateAssignment.prototype.minEdgeJetty
The minimum distance for an edge jetty from a vertex
mxGraph.prototype.minFitScale
Specifies the minimum scale to be applied in fit.
Specifies the event name for minimize.
mxWindow.prototype.minimizeImage
URL of the image to be used for the minimize icon in the titlebar.
mxGraph.prototype.minimumContainerSize
mxRectangle that specifies the minimum size of the container if resizeContainer is true.
mxGraph.prototype.minimumGraphSize
mxRectangle that specifies the minimum size of the graph.
mxGraphHandler.prototype.minimumSize
Specifies the minimum number of pixels for the width and height of a selection border.
mxWindow.prototype.minimumSize
mxRectangle that specifies the minimum width and height of the window.
mxGraph.prototype.minPageBreakDist
Specifies the minimum distance for page breaks to be visible.
mxGraphAbstractHierarchyCell.prototype.minRank
The minimum rank this cell occupies.
mxActor.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxConnector.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxCylinder.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxDoubleEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxEllipse.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxLine.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxRhombus.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxShape.prototype.mixedModeHtml
Specifies if createHtml should be used in mixed Html mode.
mxStencilShape.prototype.mixedModeHtml
Always prefers VML in mixed mode for stencil shapes.
mxSwimlane.prototype.mixedModeHtml
Overrides the parent value with false, meaning it will draw in VML in mixed Html mode.
mxGraph.prototype.model
Holds the mxGraphModel that contains the cells to be displayed.
mxHierarchicalLayout.prototype.model
The internal mxGraphHierarchyModel formed of the layout.
mxSession.prototype.model
Reference to the enclosing mxGraphModel.
mxCellEditor.prototype.modified
Specifies if the label has been modified.
mxEditor.prototype.modified
True if the graph has been modified since it was last saved.
Specifies the event name for mouseDown.
Specifies the event name for mouseMove.
Specifies the event name for mouseUp.
mxConnectionHandler.prototype.mouseDownCounter
Counts the number of mouseDown events since the start.
mxGraph.prototype.mouseListeners
Holds the mouse event listeners.
Specifies the event name for move.
Specifies the event name for moveCells.
Specifies the event name for moveEnd.
Specifies the event name for moveStart.
mxCircleLayout.prototype.moveCircle
Boolean specifying if the circle should be moved to the top, left corner specified by x0 and y0.
mxGraphHandler.prototype.moveEnabled
Specifies if moving is enabled.
mxLayoutManager.prototype.moveHandler
Holds the function that handles the move event.
Holds the function that handles the move event.
mxConnectionHandler.prototype.moveIconBack
Specifies if icons should be moved to the back of the overlay pane.
mxConnectionHandler.prototype.moveIconFront
Specifies if icons should be displayed inside the graph container instead of the overlay pane.
mxHierarchicalLayout.prototype.moveParent
Specifies if the parent should be moved if resizeParent is enabled.
mxConnectionHandler.prototype.movePreviewAway
Switch to enable moving the preview away from the mousepointer.
mxEditor.prototype.movePropertiesDialog
Specifies if the properties dialog should be automatically moved near the cell it is displayed for, otherwise the dialog is not moved.
mxCompactTreeLayout.prototype.moveTree
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
mxGraph.prototype.multigraph
Specifies if multiple edges in the same direction between the same pair of vertices are allowed.
mxGraph.prototype.multiplicities
An array of mxMultiplicities describing the allowed connections in a graph.
Optional global config variable to toggle loading of the two resource files in mxGraph and mxEditor.
Optional global config variable to toggle loading of the CSS files when the library is initialized.
mxCell.prototype.mxTransient
List of members that should not be cloned inside clone.
diff --git a/docs/js-api/index/Variables9.html b/docs/js-api/index/Variables9.html index 6e3c887ed..fc6f2b972 100644 --- a/docs/js-api/index/Variables9.html +++ b/docs/js-api/index/Variables9.html @@ -11,13 +11,13 @@ if (browserType) {document.write("
");if (browserV -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 name, mxEventObject
 neighbours, mxFastOrganicLayout
 nestedBestRanks, mxMedianHybridCrossingReduction
 nextId, mxGraphModel
 nextLayerConnectedCache, mxCoordinateAssignment
 nextLayerConnectedCells, mxGraphAbstractHierarchyCell
 NO_FO, mxClient
 node, mxShape
 nodeDistance, mxCompactTreeLayout
 NODETYPE_ATTRIBUTE, mxConstants
 NODETYPE_CDATA, mxConstants
 NODETYPE_COMMENT, mxConstants
 NODETYPE_DOCUMENT, mxConstants
 NODETYPE_DOCUMENT_FRAGMENT, mxConstants
 NODETYPE_DOCUMENTTYPE, mxConstants
 NODETYPE_ELEMENT, mxConstants
 NODETYPE_ENTITY, mxConstants
 NODETYPE_ENTITY_REFERENCE, mxConstants
 NODETYPE_NOTATION, mxConstants
 NODETYPE_PROCESSING_INSTRUCTION, mxConstants
 NODETYPE_TEXT, mxConstants
 NONE, mxConstants
 noReset, mxToolbar
 NORMALIZE, mxEvent
 normalizeImage, mxWindow
 normalKeys, mxKeyHandler
 NOTIFY, mxEvent
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
 nudge, WeightedCellSorter
O
 objects
 offset
 oldBounds, mxTemporaryCellStates
 oldScale, mxTemporaryCellStates
 oldStates, mxTemporaryCellStates
 opaqueVmlImages, mxLabel
 OPEN, mxEvent
 ORDER_CELLS, mxEvent
 orderChanged, mxCellState
 ordered, mxGraph
 orientation
 origin, mxCellState
 outline, mxEditor
 OUTLINE_COLOR, mxConstants
 OUTLINE_HANDLE_FILLCOLOR, mxConstants
 OUTLINE_HANDLE_STROKECOLOR, mxConstants
 OUTLINE_STROKEWIDTH, mxConstants
 outlineResource, mxEditor
+
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
N
 name, mxEventObject
 neighbours, mxFastOrganicLayout
 nestedBestRanks, mxMedianHybridCrossingReduction
 nextId, mxGraphModel
 nextLayerConnectedCache, mxCoordinateAssignment
 nextLayerConnectedCells, mxGraphAbstractHierarchyCell
 NO_FO, mxClient
 node, mxShape
 nodeDistance, mxCompactTreeLayout
 NODETYPE_ATTRIBUTE, mxConstants
 NODETYPE_CDATA, mxConstants
 NODETYPE_COMMENT, mxConstants
 NODETYPE_DOCUMENT, mxConstants
 NODETYPE_DOCUMENT_FRAGMENT, mxConstants
 NODETYPE_DOCUMENTTYPE, mxConstants
 NODETYPE_ELEMENT, mxConstants
 NODETYPE_ENTITY, mxConstants
 NODETYPE_ENTITY_REFERENCE, mxConstants
 NODETYPE_NOTATION, mxConstants
 NODETYPE_PROCESSING_INSTRUCTION, mxConstants
 NODETYPE_TEXT, mxConstants
 NONE, mxConstants
 noReset, mxToolbar
 NORMALIZE, mxEvent
 normalizeImage, mxWindow
 normalKeys, mxKeyHandler
 NOTIFY, mxEvent
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
 nudge, WeightedCellSorter
O
 objects
 offset
 oldBounds, mxTemporaryCellStates
 oldScale, mxTemporaryCellStates
 oldStates, mxTemporaryCellStates
 opaqueVmlImages, mxLabel
 OPEN, mxEvent
 ORDER_CELLS, mxEvent
 orderChanged, mxCellState
 ordered, mxGraph
 orientation
 origin, mxCellState
 outline, mxEditor
 OUTLINE_COLOR, mxConstants
 OUTLINE_HANDLE_FILLCOLOR, mxConstants
 OUTLINE_HANDLE_STROKECOLOR, mxConstants
 OUTLINE_STROKEWIDTH, mxConstants
 outlineResource, mxEditor
-
mxEventObject.prototype.name
Holds the name.
mxFastOrganicLayout.prototype.neighbours
Local copy of cell neighbours.
mxMedianHybridCrossingReduction.prototype.nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so far
mxGraphModel.prototype.nextId
Specifies the next Id to be created.
mxCoordinateAssignment.prototype.nextLayerConnectedCache
A store of connections to the layer above for speed
mxGraphAbstractHierarchyCell.prototype.nextLayerConnectedCells
A cached version of the cells this cell connects to on the next layer up
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
mxShape.prototype.node
Holds the outermost DOM node that represents this shape.
mxCompactTreeLayout.prototype.nodeDistance
Holds the nodeDistance.
DOM node of type ATTRIBUTE.
DOM node of type CDATA.
DOM node of type COMMENT.
DOM node of type DOCUMENT.
DOM node of type DOCUMENT_FRAGMENT.
DOM node of type DOCUMENTTYPE.
DOM node of type ELEMENT.
DOM node of type ENTITY.
DOM node of type ENTITY_REFERENCE.
DOM node of type NOTATION.
DOM node of type PROCESSING_INSTRUCTION.
DOM node of type TEXT.
Defines the value for none.
mxToolbar.prototype.noReset
Specifies if resetMode requires a forced flag of true for resetting the current mode in the toolbar.
Specifies the event name for normalize.
mxWindow.prototype.normalizeImage
URL of the image to be used for the normalize icon in the titlebar.
mxKeyHandler.prototype.normalKeys
Maps from keycodes to functions for non-pressed control keys.
Specifies the event name for notify.
Defines the SVG namespace.
Defines the XHTML namespace.
Defines the XLink namespace.
WeightedCellSorter.prototype.nudge
Whether or not to flip equal weight values.
+
mxEventObject.prototype.name
Holds the name.
mxFastOrganicLayout.prototype.neighbours
Local copy of cell neighbours.
mxMedianHybridCrossingReduction.prototype.nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so far
mxGraphModel.prototype.nextId
Specifies the next Id to be created.
mxCoordinateAssignment.prototype.nextLayerConnectedCache
A store of connections to the layer above for speed
mxGraphAbstractHierarchyCell.prototype.nextLayerConnectedCells
A cached version of the cells this cell connects to on the next layer up
NO_FO: navigator.userAgent.indexOf('Firefox/1.') >
True if foreignObject support is not available.
mxShape.prototype.node
Holds the outermost DOM node that represents this shape.
mxCompactTreeLayout.prototype.nodeDistance
Holds the nodeDistance.
DOM node of type ATTRIBUTE.
DOM node of type CDATA.
DOM node of type COMMENT.
DOM node of type DOCUMENT.
DOM node of type DOCUMENT_FRAGMENT.
DOM node of type DOCUMENTTYPE.
DOM node of type ELEMENT.
DOM node of type ENTITY.
DOM node of type ENTITY_REFERENCE.
DOM node of type NOTATION.
DOM node of type PROCESSING_INSTRUCTION.
DOM node of type TEXT.
Defines the value for none.
mxToolbar.prototype.noReset
Specifies if resetMode requires a forced flag of true for resetting the current mode in the toolbar.
Specifies the event name for normalize.
mxWindow.prototype.normalizeImage
URL of the image to be used for the normalize icon in the titlebar.
mxKeyHandler.prototype.normalKeys
Maps from keycodes to functions for non-pressed control keys.
Specifies the event name for notify.
Defines the SVG namespace.
Defines the XHTML namespace.
Defines the XLink namespace.
WeightedCellSorter.prototype.nudge
Whether or not to flip equal weight values.
-
mxCodec.prototype.objects
Maps from IDs to objects.
Contains all objects where any listener was added using addListener.
mxCellOverlay.prototype.offset
Holds the offset as an mxPoint.
mxGeometry.prototype.offset
For edges, this holds the offset (in pixels) from the position defined by x and y on the edge.
mxTemporaryCellStates.prototype.oldBounds
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldScale
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldStates
Holds the height of the rectangle.
mxLabel.prototype.opaqueVmlImages
Specifies if all VML images should be rendered without transparency, that is, if the current opacity should be ignored for images.
Specifies the event name for open.
Specifies the event name for orderCells.
mxCellState.prototype.orderChanged
Specifies if the cell has changed order and the display needs to be updated.
mxGraph.prototype.ordered
Specifies if the display should reflect the order of the cells in the model.
mxCoordinateAssignment.prototype.orientation
The position of the root ( start ) node(s) relative to the rest of the laid out graph.
mxHierarchicalLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxCellState.prototype.origin
mxPoint that holds the origin for all child cells.
mxEditor.prototype.outline
Reference to the mxWindow that contains the outline.
Defines the color to be used for the outline rectangle border.
Defines the color to be used for the outline sizer fill color.
Defines the color to be used for the outline sizer stroke color.
Defines the strokewidth to be used for the outline rectangle stroke width.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
+
mxCodec.prototype.objects
Maps from IDs to objects.
Contains all objects where any listener was added using addListener.
mxCellOverlay.prototype.offset
Holds the offset as an mxPoint.
mxGeometry.prototype.offset
For edges, this holds the offset (in pixels) from the position defined by x and y on the edge.
mxTemporaryCellStates.prototype.oldBounds
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldScale
Holds the height of the rectangle.
mxTemporaryCellStates.prototype.oldStates
Holds the height of the rectangle.
mxLabel.prototype.opaqueVmlImages
Specifies if all VML images should be rendered without transparency, that is, if the current opacity should be ignored for images.
Specifies the event name for open.
Specifies the event name for orderCells.
mxCellState.prototype.orderChanged
Specifies if the cell has changed order and the display needs to be updated.
mxGraph.prototype.ordered
Specifies if the display should reflect the order of the cells in the model.
mxCoordinateAssignment.prototype.orientation
The position of the root ( start ) node(s) relative to the rest of the laid out graph.
mxHierarchicalLayout.prototype.orientation
The position of the root node(s) relative to the laid out graph in.
mxCellState.prototype.origin
mxPoint that holds the origin for all child cells.
mxEditor.prototype.outline
Reference to the mxWindow that contains the outline.
Defines the color to be used for the outline rectangle border.
Defines the color to be used for the outline sizer fill color.
Defines the color to be used for the outline sizer stroke color.
Defines the strokewidth to be used for the outline rectangle stroke width.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
diff --git a/docs/js-api/search/FunctionsC.html b/docs/js-api/search/FunctionsC.html index e25d91adb..b87c7f568 100644 --- a/docs/js-api/search/FunctionsC.html +++ b/docs/js-api/search/FunctionsC.html @@ -11,7 +11,7 @@ if (browserType) {document.write("
");if (browserV -
Loading...
calcAttraction, mxFastOrganicLayout
calcPositions, mxFastOrganicLayout
calcRepulsion, mxFastOrganicLayout
calculateCrossings, mxMedianHybridCrossingReduction
calculatedWeightedValue, mxCoordinateAssignment
calculateRankCrossing, mxMedianHybridCrossingReduction
calculateWidestRank, mxCoordinateAssignment
canExportCell, mxGraph
canImportCell, mxGraph
canRedo, mxUndoManager
canUndo, mxUndoManager
cellCloned, mxGraphModel
cellConnected, mxGraph
cellResized, mxSpaceManager
cellsFolded, mxGraph
cellsOrdered, mxGraph
cellsRemoved, mxGraph
cellsToggled, mxGraph
changeSelection, mxGraphSelectionModel
check, mxMultiplicity
checkNeighbors, mxMultiplicity
checkTerminal, mxMultiplicity
checkType, mxMultiplicity
childMoved, mxGraphView
circle, mxCircleLayout
click, mxGraph
cloneCell, mxGraphModel
cloneCellImpl, mxGraphModel
clonePreviewState, mxEdgeHandler
cloneTemplate, mxObjectCodec
cloneValue, mxCell
computeAspect, mxStencil
configure, mxEditor
configureShape, mxCellRenderer
confirm, mxUtils
connectCell, mxGraph
convert, mxUrlConverter
convertValueFromXml, mxObjectCodec
convertValueToXml, mxObjectCodec
convertWaypoint, mxConnectionHandler
createBounds, mxVertexHandler
createCellOverlays, mxCellRenderer
createConditions, mxDefaultPopupMenu
createControl, mxCellRenderer
createDashPattern, mxConnector
createDragElement, mxDragSource
createEdgeState, mxConnectionHandler
createGraph, mxEditor
createGroup, mxEditor
createHandler, mxGraph
createHandleShape, mxEdgeHandler
createHtmlPane, mxGraphView
createIcons, mxConnectionHandler
createId, mxGraphModel
createImage, mxUtils
createInternalCells, mxGraphHierarchyModel
createLabel, mxCellRenderer
createLine, mxCompactTreeLayout
createMenu, mxDefaultPopupMenu
createNode, mxCompactTreeLayout
createPageSelector, mxPrintPreview
createPath, mxShape
createPoints, mxShape
createPopupMenu, mxEditor
createPreviewElement, mxDragSource
createPreviewShape, mxGraphHandler
createRoot, mxGraphModel
createSession, mxEditor
createSizerShape, mxVertexHandler
createState, mxGraphView
createSubmenu, mxPopupMenu
createSvgPipe, mxShape
createTargetVertex, mxConnectionHandler
createTasks, mxEditor
createToolbar, mxEditor
createVertex, mxGraph
createVirtualBend, mxElbowEdgeHandler
createVmlPane, mxGraphView
crossingStage, mxHierarchicalLayout
cut, mxClipboard
cycleAttribute, mxEditor
cycleStage, mxHierarchicalLayout
Searching...
No Matches
@@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxConstantCostFunction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html index dee41dd6d..d429a1ff3 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.analysis.mxDistanceCostFunction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html index e8bd855af..581e783e6 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -255,7 +255,7 @@ Uses of -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html index 734c93485..d8e6deb28 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -172,7 +172,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html index 37ff8fe39..672238886 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html index b9af6f39f..b941c4267 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.1.5 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -218,7 +218,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html index dcbc5dec5..169ba1d86 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -228,7 +228,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html index a93802e37..77eb4678d 100644 --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -157,7 +157,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html index 2070e1f04..e35b7240a 100644 --- a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html +++ b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html @@ -2,12 +2,12 @@ - + -mxConstantCostFunction (mxGraph 1.10.1.5 API Specification) +mxConstantCostFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxConstantCostFunction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstantCostFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxConstantCostFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -263,7 +263,7 @@ public double getCost(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html index 99303c882..7187b807e 100644 --- a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html +++ b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html @@ -2,12 +2,12 @@ - + -mxDistanceCostFunction (mxGraph 1.10.1.5 API Specification) +mxDistanceCostFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxDistanceCostFunction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDistanceCostFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxDistanceCostFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -226,7 +226,7 @@ public double getCost(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html index 385713d42..28e7ac0ba 100644 --- a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html +++ b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html @@ -2,12 +2,12 @@ - + -mxFibonacciHeap.Node (mxGraph 1.10.1.5 API Specification) +mxFibonacciHeap.Node (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxFibonacciHeap.Node (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFibonacciHeap.Node (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxFibonacciHeap.Node (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -270,7 +270,7 @@ public void setUserObject(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html index f96293c67..664b9bd93 100644 --- a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html +++ b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html @@ -2,12 +2,12 @@ - + -mxFibonacciHeap (mxGraph 1.10.1.5 API Specification) +mxFibonacciHeap (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxFibonacciHeap (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFibonacciHeap (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxFibonacciHeap (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -638,7 +638,7 @@ protected void link(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html index c800349c1..c0c41bcd3 100644 --- a/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html +++ b/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html @@ -2,12 +2,12 @@ - + -mxGraphAnalysis (mxGraph 1.10.1.5 API Specification) +mxGraphAnalysis (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphAnalysis (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphAnalysis (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphAnalysis (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -538,7 +538,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxICostFunction.html b/java/docs/com/mxgraph/analysis/mxICostFunction.html index 4dfa7beab..29746ff27 100644 --- a/java/docs/com/mxgraph/analysis/mxICostFunction.html +++ b/java/docs/com/mxgraph/analysis/mxICostFunction.html @@ -2,12 +2,12 @@ - + -mxICostFunction (mxGraph 1.10.1.5 API Specification) +mxICostFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxICostFunction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICostFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxICostFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -179,7 +179,7 @@ double getCost(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html index d02b5a6a9..feb54f7e5 100644 --- a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html +++ b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html @@ -2,12 +2,12 @@ - + -mxUnionFind.Node (mxGraph 1.10.1.5 API Specification) +mxUnionFind.Node (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxUnionFind.Node (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUnionFind.Node (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxUnionFind.Node (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -335,7 +335,7 @@ public void setSize(int size) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.html b/java/docs/com/mxgraph/analysis/mxUnionFind.html index baa809d46..3fb7080b4 100644 --- a/java/docs/com/mxgraph/analysis/mxUnionFind.html +++ b/java/docs/com/mxgraph/analysis/mxUnionFind.html @@ -2,12 +2,12 @@ - + -mxUnionFind (mxGraph 1.10.1.5 API Specification) +mxUnionFind (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxUnionFind (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUnionFind (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxUnionFind (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -357,7 +357,7 @@ public boolean differ(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/package-frame.html b/java/docs/com/mxgraph/analysis/package-frame.html index b3f4c5149..bf34218e2 100644 --- a/java/docs/com/mxgraph/analysis/package-frame.html +++ b/java/docs/com/mxgraph/analysis/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification) +com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/analysis/package-summary.html b/java/docs/com/mxgraph/analysis/package-summary.html index 5337e187f..82ec162a1 100644 --- a/java/docs/com/mxgraph/analysis/package-summary.html +++ b/java/docs/com/mxgraph/analysis/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification) +com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -174,7 +174,7 @@ This package provides various algorithms for graph analysis, such as -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/package-tree.html b/java/docs/com/mxgraph/analysis/package-tree.html index 201a39a56..72c7cf35a 100644 --- a/java/docs/com/mxgraph/analysis/package-tree.html +++ b/java/docs/com/mxgraph/analysis/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -125,7 +125,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/analysis/package-use.html b/java/docs/com/mxgraph/analysis/package-use.html index cf103c931..6b6db7ef8 100644 --- a/java/docs/com/mxgraph/analysis/package-use.html +++ b/java/docs/com/mxgraph/analysis/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -167,7 +167,7 @@ Classes in
com.mxgr -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html index c53561008..c0c0d8feb 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -201,7 +201,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html index 83aeb89c6..2d23163b0 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -859,7 +859,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html index 4c1b4d2c9..199d2c919 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -194,7 +194,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html index ec244b542..b3f858dae 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -190,7 +190,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html index 2ec018a08..b884cab72 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxHtmlCanvas -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html index 62091f76f..626afa97a 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -426,7 +426,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html index 22e9230b1..ec8d17b0d 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -236,7 +236,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html index db03df2e4..755c51a92 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxImageCanvas -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html index 512dffd2e..0fbc435c5 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxSvgCanvas -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html index 69bf9fedf..50a524f2d 100644 --- a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.canvas.mxVmlCanvas -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html index bd76ab962..3f8ba45bd 100644 --- a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html @@ -2,12 +2,12 @@ - + -mxBasicCanvas (mxGraph 1.10.1.5 API Specification) +mxBasicCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxBasicCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBasicCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxBasicCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -629,7 +629,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html index 76f23ec2f..390c6e542 100644 --- a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html @@ -2,12 +2,12 @@ - + -mxGraphics2DCanvas (mxGraph 1.10.1.5 API Specification) +mxGraphics2DCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphics2DCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphics2DCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphics2DCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -828,7 +828,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html index 4dc32f259..a6bc89076 100644 --- a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html +++ b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html @@ -2,12 +2,12 @@ - + -mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.1.5 API Specification) +mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -623,7 +623,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html index 6ec84b6e1..e94de3f00 100644 --- a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html +++ b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html @@ -2,12 +2,12 @@ - + -mxGraphicsCanvas2D (mxGraph 1.10.1.5 API Specification) +mxGraphicsCanvas2D (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphicsCanvas2D (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphicsCanvas2D (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphicsCanvas2D (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -2117,7 +2117,7 @@ protected void updateStroke() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html index 3336e24d1..79e137830 100644 --- a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html @@ -2,12 +2,12 @@ - + -mxHtmlCanvas (mxGraph 1.10.1.5 API Specification) +mxHtmlCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxHtmlCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -502,7 +502,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxICanvas.html b/java/docs/com/mxgraph/canvas/mxICanvas.html index f5fad1793..e323c658f 100644 --- a/java/docs/com/mxgraph/canvas/mxICanvas.html +++ b/java/docs/com/mxgraph/canvas/mxICanvas.html @@ -2,12 +2,12 @@ - + -mxICanvas (mxGraph 1.10.1.5 API Specification) +mxICanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxICanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxICanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -289,7 +289,7 @@ drawLabel -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/mxICanvas2D.html index 109285600..99eb75e1d 100644 --- a/java/docs/com/mxgraph/canvas/mxICanvas2D.html +++ b/java/docs/com/mxgraph/canvas/mxICanvas2D.html @@ -2,12 +2,12 @@ - + -mxICanvas2D (mxGraph 1.10.1.5 API Specification) +mxICanvas2D (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxICanvas2D (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICanvas2D (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxICanvas2D (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1031,7 +1031,7 @@ void clip() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/mxImageCanvas.html index a3c3a8770..bcb41ed81 100644 --- a/java/docs/com/mxgraph/canvas/mxImageCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxImageCanvas.html @@ -2,12 +2,12 @@ - + -mxImageCanvas (mxGraph 1.10.1.5 API Specification) +mxImageCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxImageCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxImageCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -508,7 +508,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html index 514641a54..53a423250 100644 --- a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html @@ -2,12 +2,12 @@ - + -mxSvgCanvas (mxGraph 1.10.1.5 API Specification) +mxSvgCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSvgCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSvgCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSvgCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -806,7 +806,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/mxVmlCanvas.html index 713fde795..c2682d795 100644 --- a/java/docs/com/mxgraph/canvas/mxVmlCanvas.html +++ b/java/docs/com/mxgraph/canvas/mxVmlCanvas.html @@ -2,12 +2,12 @@ - + -mxVmlCanvas (mxGraph 1.10.1.5 API Specification) +mxVmlCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxVmlCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxVmlCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxVmlCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -471,7 +471,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/package-frame.html b/java/docs/com/mxgraph/canvas/package-frame.html index fae2f146d..67a452f9b 100644 --- a/java/docs/com/mxgraph/canvas/package-frame.html +++ b/java/docs/com/mxgraph/canvas/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification) +com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/canvas/package-summary.html b/java/docs/com/mxgraph/canvas/package-summary.html index 0e2f76a30..6fe6b079c 100644 --- a/java/docs/com/mxgraph/canvas/package-summary.html +++ b/java/docs/com/mxgraph/canvas/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification) +com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -193,7 +193,7 @@ This package contains various implementations for painting a graph using -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/package-tree.html b/java/docs/com/mxgraph/canvas/package-tree.html index 30db0ff3b..5f903911c 100644 --- a/java/docs/com/mxgraph/canvas/package-tree.html +++ b/java/docs/com/mxgraph/canvas/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -129,7 +129,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/canvas/package-use.html b/java/docs/com/mxgraph/canvas/package-use.html index 3db3f1260..2d68edded 100644 --- a/java/docs/com/mxgraph/canvas/package-use.html +++ b/java/docs/com/mxgraph/canvas/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -371,7 +371,7 @@ Classes in
com.mxgrap -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html index 8c7b5482e..749803d74 100644 --- a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxCellCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html index 1c836cfe8..c8c39b557 100644 --- a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxChildChangeCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxCodec.html b/java/docs/com/mxgraph/io/class-use/mxCodec.html index d71e43ffb..1e05d1976 100644 --- a/java/docs/com/mxgraph/io/class-use/mxCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -528,7 +528,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html index cb8aec241..b7956da4b 100644 --- a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html +++ b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxCodecRegistry -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html index 8f45bfc39..642de3405 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxGdCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html index 3541ad26c..d77502a87 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxGenericChangeCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html index 4c7b6bbe8..704643976 100644 --- a/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxGraphMlCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxGraphMlCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxGraphMlCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html index 0596b80cd..0aa593d0a 100644 --- a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxModelCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html index 1c375fc3c..e9919e3b9 100644 --- a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -252,7 +252,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html index fd80f04ad..cd272f177 100644 --- a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxRootChangeCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html index f883fd6a8..998d6fc60 100644 --- a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxStylesheetCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html index c1432a2a1..c614d2a4f 100644 --- a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html +++ b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.mxTerminalChangeCodec -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.html b/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.html index 51a4db2de..d28eaeed1 100644 --- a/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.html +++ b/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.gd.mxGdDocument (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.gd.mxGdDocument (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.gd.mxGdDocument (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdDocument (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdDocument (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.mxGDParseState.html b/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.mxGDParseState.html index 0b2c85b6b..d70852d85 100644 --- a/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.mxGDParseState.html +++ b/java/docs/com/mxgraph/io/gd/class-use/mxGdDocument.mxGDParseState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.gd.mxGdDocument.mxGDParseState (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.gd.mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.gd.mxGdDocument.mxGDParseState (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdDocument.mxGDParseState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -154,7 +154,7 @@ the order they are declared. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/class-use/mxGdEdge.html b/java/docs/com/mxgraph/io/gd/class-use/mxGdEdge.html index cea982a6a..4e9758463 100644 --- a/java/docs/com/mxgraph/io/gd/class-use/mxGdEdge.html +++ b/java/docs/com/mxgraph/io/gd/class-use/mxGdEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.gd.mxGdEdge (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.gd.mxGdEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.gd.mxGdEdge (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/class-use/mxGdNode.html b/java/docs/com/mxgraph/io/gd/class-use/mxGdNode.html index 07f3c8e82..e20de4dae 100644 --- a/java/docs/com/mxgraph/io/gd/class-use/mxGdNode.html +++ b/java/docs/com/mxgraph/io/gd/class-use/mxGdNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.gd.mxGdNode (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.gd.mxGdNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.gd.mxGdNode (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.gd.mxGdNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/mxGdDocument.html b/java/docs/com/mxgraph/io/gd/mxGdDocument.html index 866ddd8da..f0b0919a0 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdDocument.html +++ b/java/docs/com/mxgraph/io/gd/mxGdDocument.html @@ -2,12 +2,12 @@ - + -mxGdDocument (mxGraph 1.10.1.5 API Specification) +mxGdDocument (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGdDocument (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdDocument (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGdDocument (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -335,7 +335,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html b/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html index daccf9a61..0ac9d6141 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html +++ b/java/docs/com/mxgraph/io/gd/mxGdDocument.mxGDParseState.html @@ -2,12 +2,12 @@ - + -mxGdDocument.mxGDParseState (mxGraph 1.10.1.5 API Specification) +mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGdDocument.mxGDParseState (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdDocument.mxGDParseState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGdDocument.mxGDParseState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -304,7 +304,7 @@ with the specified name -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/mxGdEdge.html b/java/docs/com/mxgraph/io/gd/mxGdEdge.html index 6c43179ae..55e944af1 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdEdge.html +++ b/java/docs/com/mxgraph/io/gd/mxGdEdge.html @@ -2,12 +2,12 @@ - + -mxGdEdge (mxGraph 1.10.1.5 API Specification) +mxGdEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGdEdge (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGdEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -293,7 +293,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/mxGdNode.html b/java/docs/com/mxgraph/io/gd/mxGdNode.html index 820085489..446dfc6b3 100644 --- a/java/docs/com/mxgraph/io/gd/mxGdNode.html +++ b/java/docs/com/mxgraph/io/gd/mxGdNode.html @@ -2,12 +2,12 @@ - + -mxGdNode (mxGraph 1.10.1.5 API Specification) +mxGdNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGdNode (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGdNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -333,7 +333,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/package-frame.html b/java/docs/com/mxgraph/io/gd/package-frame.html index 2f69b0352..9e66b0d03 100644 --- a/java/docs/com/mxgraph/io/gd/package-frame.html +++ b/java/docs/com/mxgraph/io/gd/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/io/gd/package-summary.html b/java/docs/com/mxgraph/io/gd/package-summary.html index f1ebff1aa..b7c87eeae 100644 --- a/java/docs/com/mxgraph/io/gd/package-summary.html +++ b/java/docs/com/mxgraph/io/gd/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Package com.mxgraph.io.gd -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/package-tree.html b/java/docs/com/mxgraph/io/gd/package-tree.html index a0100d899..5e7efb295 100644 --- a/java/docs/com/mxgraph/io/gd/package-tree.html +++ b/java/docs/com/mxgraph/io/gd/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.gd Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io.gd Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.gd Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.gd Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.io.gd Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -128,7 +128,7 @@ Enum Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/gd/package-use.html b/java/docs/com/mxgraph/io/gd/package-use.html index 7e994af10..2bb55ec48 100644 --- a/java/docs/com/mxgraph/io/gd/package-use.html +++ b/java/docs/com/mxgraph/io/gd/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io.gd (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io.gd (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -167,7 +167,7 @@ Classes in
com.mxgr -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html index ace89ac90..94b999ff5 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.graphml.mxGraphMlConstants -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html index 6e892090f..24e48cec2 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlData.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlData (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -274,7 +274,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html index 36e54a9ee..6cf35aa2a 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -208,7 +208,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html index 9810e3a4f..5cf0e02c3 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlGraph.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlGraph (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -218,7 +218,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html index e89d52e41..ec9b78b9e 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html index df72d3678..a6135a534 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyForValues.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyForValues (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -213,7 +213,7 @@ the order they are declared. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html index 32360c955..b6882f1c1 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKey.keyTypeValues.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKey.keyTypeValues (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -213,7 +213,7 @@ the order they are declared. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html index 9c0bf5cc7..beee02559 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlKeyManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.1.5 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlKeyManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html index a6f7218e1..6c9420344 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -216,7 +216,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html index 80cedfd53..06c40ebe6 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlPort.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlPort (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html index c7bcd6f9e..5bf8ce931 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -179,7 +179,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html index ec1f5347b..15bc98595 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlShapeNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlShapeNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -179,7 +179,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html index d47c42a53..5bb2cd927 100644 --- a/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html +++ b/java/docs/com/mxgraph/io/graphml/class-use/mxGraphMlUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.io.graphml.mxGraphMlUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.io.graphml.mxGraphMlUtils -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html index 8d8760b65..4151549d7 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlConstants.html @@ -2,12 +2,12 @@ - + -mxGraphMlConstants (mxGraph 1.10.1.5 API Specification) +mxGraphMlConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlConstants (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -979,7 +979,7 @@ public mxGraphMlConstants() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html index 2b483e7de..8c5bb307c 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlData.html @@ -2,12 +2,12 @@ - + -mxGraphMlData (mxGraph 1.10.1.5 API Specification) +mxGraphMlData (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlData (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlData (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlData (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -476,7 +476,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html index 0f1a2fc38..e1071c965 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlEdge.html @@ -2,12 +2,12 @@ - + -mxGraphMlEdge (mxGraph 1.10.1.5 API Specification) +mxGraphMlEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlEdge (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -572,7 +572,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html index 372c2da7e..87b436131 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlGraph.html @@ -2,12 +2,12 @@ - + -mxGraphMlGraph (mxGraph 1.10.1.5 API Specification) +mxGraphMlGraph (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlGraph (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlGraph (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlGraph (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -525,7 +525,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html index e5f90b4bd..3c070287d 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.html @@ -2,12 +2,12 @@ - + -mxGraphMlKey (mxGraph 1.10.1.5 API Specification) +mxGraphMlKey (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlKey (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -557,7 +557,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html index 697f1169d..5f9e506b2 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyForValues.html @@ -2,12 +2,12 @@ - + -mxGraphMlKey.keyForValues (mxGraph 1.10.1.5 API Specification) +mxGraphMlKey.keyForValues (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey.keyForValues (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey.keyForValues (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlKey.keyForValues (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -368,7 +368,7 @@ with the specified name -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html index 56dc8fa4e..2c87ab17f 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKey.keyTypeValues.html @@ -2,12 +2,12 @@ - + -mxGraphMlKey.keyTypeValues (mxGraph 1.10.1.5 API Specification) +mxGraphMlKey.keyTypeValues (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKey.keyTypeValues (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKey.keyTypeValues (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlKey.keyTypeValues (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -352,7 +352,7 @@ with the specified name -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html index fbe13dc6a..f12371a3c 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlKeyManager.html @@ -2,12 +2,12 @@ - + -mxGraphMlKeyManager (mxGraph 1.10.1.5 API Specification) +mxGraphMlKeyManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlKeyManager (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlKeyManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlKeyManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -251,7 +251,7 @@ public void setKeyMap(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html index f2be13e8a..a3d5f1ec4 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlNode.html @@ -2,12 +2,12 @@ - + -mxGraphMlNode (mxGraph 1.10.1.5 API Specification) +mxGraphMlNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlNode (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -432,7 +432,7 @@ public void setNodeData(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html index b801c0742..cf01374cb 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlPort.html @@ -2,12 +2,12 @@ - + -mxGraphMlPort (mxGraph 1.10.1.5 API Specification) +mxGraphMlPort (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlPort (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlPort (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlPort (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -316,7 +316,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html index 52e0924c0..bf20a62d9 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeEdge.html @@ -2,12 +2,12 @@ - + -mxGraphMlShapeEdge (mxGraph 1.10.1.5 API Specification) +mxGraphMlShapeEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlShapeEdge (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlShapeEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlShapeEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -410,7 +410,7 @@ public void setEdgeTarget(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html index e4983e04c..3f7845f6f 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlShapeNode.html @@ -2,12 +2,12 @@ - + -mxGraphMlShapeNode (mxGraph 1.10.1.5 API Specification) +mxGraphMlShapeNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlShapeNode (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlShapeNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlShapeNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -488,7 +488,7 @@ public void setDataStyle(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html b/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html index bbc9dd3ee..b6c54d7be 100644 --- a/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html +++ b/java/docs/com/mxgraph/io/graphml/mxGraphMlUtils.html @@ -2,12 +2,12 @@ - + -mxGraphMlUtils (mxGraph 1.10.1.5 API Specification) +mxGraphMlUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -412,7 +412,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/package-frame.html b/java/docs/com/mxgraph/io/graphml/package-frame.html index f7f0fd670..61514f3d7 100644 --- a/java/docs/com/mxgraph/io/graphml/package-frame.html +++ b/java/docs/com/mxgraph/io/graphml/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/io/graphml/package-summary.html b/java/docs/com/mxgraph/io/graphml/package-summary.html index bb2d22e98..46c606556 100644 --- a/java/docs/com/mxgraph/io/graphml/package-summary.html +++ b/java/docs/com/mxgraph/io/graphml/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -181,7 +181,7 @@ Package com.mxgraph.io.graphml -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/package-tree.html b/java/docs/com/mxgraph/io/graphml/package-tree.html index 75800f109..310585c6a 100644 --- a/java/docs/com/mxgraph/io/graphml/package-tree.html +++ b/java/docs/com/mxgraph/io/graphml/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.io.graphml Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -128,7 +128,7 @@ Enum Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/graphml/package-use.html b/java/docs/com/mxgraph/io/graphml/package-use.html index 5fdd90be1..a603ce9a5 100644 --- a/java/docs/com/mxgraph/io/graphml/package-use.html +++ b/java/docs/com/mxgraph/io/graphml/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io.graphml (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -227,7 +227,7 @@ Classes in
com -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxCellCodec.html b/java/docs/com/mxgraph/io/mxCellCodec.html index a51369bce..157e8332e 100644 --- a/java/docs/com/mxgraph/io/mxCellCodec.html +++ b/java/docs/com/mxgraph/io/mxCellCodec.html @@ -2,12 +2,12 @@ - + -mxCellCodec (mxGraph 1.10.1.5 API Specification) +mxCellCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -361,7 +361,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/mxChildChangeCodec.html index cf85eb8fb..5ff98fcf2 100644 --- a/java/docs/com/mxgraph/io/mxChildChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxChildChangeCodec.html @@ -2,12 +2,12 @@ - + -mxChildChangeCodec (mxGraph 1.10.1.5 API Specification) +mxChildChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxChildChangeCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxChildChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxChildChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -387,7 +387,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxCodec.html b/java/docs/com/mxgraph/io/mxCodec.html index 7546a1cab..dd80b7997 100644 --- a/java/docs/com/mxgraph/io/mxCodec.html +++ b/java/docs/com/mxgraph/io/mxCodec.html @@ -2,12 +2,12 @@ - + -mxCodec (mxGraph 1.10.1.5 API Specification) +mxCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -764,7 +764,7 @@ public static void setAttribute(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxCodecRegistry.html b/java/docs/com/mxgraph/io/mxCodecRegistry.html index 739382842..d28315065 100644 --- a/java/docs/com/mxgraph/io/mxCodecRegistry.html +++ b/java/docs/com/mxgraph/io/mxCodecRegistry.html @@ -2,12 +2,12 @@ - + -mxCodecRegistry (mxGraph 1.10.1.5 API Specification) +mxCodecRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCodecRegistry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCodecRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCodecRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -439,7 +439,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxGdCodec.html b/java/docs/com/mxgraph/io/mxGdCodec.html index fd2e3e73a..6762ae4ec 100644 --- a/java/docs/com/mxgraph/io/mxGdCodec.html +++ b/java/docs/com/mxgraph/io/mxGdCodec.html @@ -2,12 +2,12 @@ - + -mxGdCodec (mxGraph 1.10.1.5 API Specification) +mxGdCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGdCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGdCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGdCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -244,7 +244,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/mxGenericChangeCodec.html index 113f6856e..c9638d7f4 100644 --- a/java/docs/com/mxgraph/io/mxGenericChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxGenericChangeCodec.html @@ -2,12 +2,12 @@ - + -mxGenericChangeCodec (mxGraph 1.10.1.5 API Specification) +mxGenericChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGenericChangeCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGenericChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGenericChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -314,7 +314,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxGraphMlCodec.html b/java/docs/com/mxgraph/io/mxGraphMlCodec.html index 66b6b34ca..64bf6874d 100644 --- a/java/docs/com/mxgraph/io/mxGraphMlCodec.html +++ b/java/docs/com/mxgraph/io/mxGraphMlCodec.html @@ -2,12 +2,12 @@ - + -mxGraphMlCodec (mxGraph 1.10.1.5 API Specification) +mxGraphMlCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphMlCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphMlCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphMlCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -340,7 +340,7 @@ public static void addEdgeData(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxModelCodec.html b/java/docs/com/mxgraph/io/mxModelCodec.html index 62cd2555b..0a0c21519 100644 --- a/java/docs/com/mxgraph/io/mxModelCodec.html +++ b/java/docs/com/mxgraph/io/mxModelCodec.html @@ -2,12 +2,12 @@ - + -mxModelCodec (mxGraph 1.10.1.5 API Specification) +mxModelCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxModelCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxModelCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxModelCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -327,7 +327,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxObjectCodec.html b/java/docs/com/mxgraph/io/mxObjectCodec.html index 4c63a14db..21e97463b 100644 --- a/java/docs/com/mxgraph/io/mxObjectCodec.html +++ b/java/docs/com/mxgraph/io/mxObjectCodec.html @@ -2,12 +2,12 @@ - + -mxObjectCodec (mxGraph 1.10.1.5 API Specification) +mxObjectCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxObjectCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxObjectCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxObjectCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1504,7 +1504,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/mxRootChangeCodec.html index 2870907d7..5ac457c0a 100644 --- a/java/docs/com/mxgraph/io/mxRootChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxRootChangeCodec.html @@ -2,12 +2,12 @@ - + -mxRootChangeCodec (mxGraph 1.10.1.5 API Specification) +mxRootChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxRootChangeCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRootChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxRootChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -349,7 +349,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/mxStylesheetCodec.html index 86de65498..c504f6a4b 100644 --- a/java/docs/com/mxgraph/io/mxStylesheetCodec.html +++ b/java/docs/com/mxgraph/io/mxStylesheetCodec.html @@ -2,12 +2,12 @@ - + -mxStylesheetCodec (mxGraph 1.10.1.5 API Specification) +mxStylesheetCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheetCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheetCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStylesheetCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -344,7 +344,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html index 5134c398a..dccd2d179 100644 --- a/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html +++ b/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html @@ -2,12 +2,12 @@ - + -mxTerminalChangeCodec (mxGraph 1.10.1.5 API Specification) +mxTerminalChangeCodec (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxTerminalChangeCodec (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTerminalChangeCodec (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxTerminalChangeCodec (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -283,7 +283,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/package-frame.html b/java/docs/com/mxgraph/io/package-frame.html index 5e7f4738b..49fd4b010 100644 --- a/java/docs/com/mxgraph/io/package-frame.html +++ b/java/docs/com/mxgraph/io/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/io/package-summary.html b/java/docs/com/mxgraph/io/package-summary.html index 6cea37ad5..515028517 100644 --- a/java/docs/com/mxgraph/io/package-summary.html +++ b/java/docs/com/mxgraph/io/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.io (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -185,7 +185,7 @@ This package contains all classes for input/output. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/package-tree.html b/java/docs/com/mxgraph/io/package-tree.html index 91d3702b1..29f08c82b 100644 --- a/java/docs/com/mxgraph/io/package-tree.html +++ b/java/docs/com/mxgraph/io/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.io Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.io Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.io Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -120,7 +120,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/io/package-use.html b/java/docs/com/mxgraph/io/package-use.html index 04d601a60..8a2b1f547 100644 --- a/java/docs/com/mxgraph/io/package-use.html +++ b/java/docs/com/mxgraph/io/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.io (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.io (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.io (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.io (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.io (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Classes in
com.mxgraph.io -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html index f6b5ebba2..b94aa8c66 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxCircleLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html index 15f99efda..e9b3a31de 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.1.5 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html index e654bd830..10995ac7b 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -255,7 +255,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html index ad102dafc..3e0a6887c 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -302,7 +302,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html index 480fa8d8c..8a32f2237 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html index 88d7f9d6b..55ba9abf6 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxCompactTreeLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html index 9992194f6..a544eeb69 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxEdgeLabelLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html index 01853f02b..5baa802af 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxFastOrganicLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html index 1b8edab41..6fdf60d30 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -260,7 +260,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html index 67263ee72..face1c1a6 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -315,7 +315,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html index 67a0c56a0..5564c88d3 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.1.5 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -153,7 +153,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html index 233d6c954..4772f6db1 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxOrganicLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html index 3238b3087..dc035c9f4 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxParallelEdgeLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html index fdda658f6..e67a4143a 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxPartitionLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html index 8ef1f6d88..f4b1113ce 100644 --- a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html +++ b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.mxStackLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html index 75561567a..4112f9079 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html +++ b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -240,7 +240,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html index 7416a129c..13d91ab59 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -314,7 +314,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html index db798eabe..ebc8f652a 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -297,7 +297,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html index 7c861c0bf..99032e56a 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.Ce function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -176,7 +176,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html index 46ea0cfa4..12f798bbb 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGra function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -259,7 +259,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html index a9d27320c..fa62156ac 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -318,7 +318,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html index 73354bc1a..855a6839e 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGrap function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html index cc1d89608..feb46e462 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html @@ -2,12 +2,12 @@ - + -mxGraphAbstractHierarchyCell (mxGraph 1.10.1.5 API Specification) +mxGraphAbstractHierarchyCell (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphAbstractHierarchyCell (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -599,7 +599,7 @@ public void setY(int layer, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html index 770050629..5a4a10fbc 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyEdge (mxGraph 1.10.1.5 API Specification) +mxGraphHierarchyEdge (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyEdge (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyEdge (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphHierarchyEdge (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -527,7 +527,7 @@ public void setGeneralPurposeVariable(int layer, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html index 5b1ae466c..b6f9bec6b 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.1.5 API Specification) +mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -187,7 +187,7 @@ void visit(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html index 43eb476b0..918afa1ca 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyModel (mxGraph 1.10.1.5 API Specification) +mxGraphHierarchyModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyModel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphHierarchyModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -680,7 +680,7 @@ public void setDfsCount(int dfsCount) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html index 8a7c0e1bb..e4057b627 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyNode (mxGraph 1.10.1.5 API Specification) +mxGraphHierarchyNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyNode (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphHierarchyNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -526,7 +526,7 @@ public boolean isAncestor(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html index 799cc9d52..c26895c1b 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html @@ -2,12 +2,12 @@ - + -mxGraphHierarchyRank (mxGraph 1.10.1.5 API Specification) +mxGraphHierarchyRank (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHierarchyRank (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHierarchyRank (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphHierarchyRank (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -233,7 +233,7 @@ public mxGraphHierarchyRank() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html index f35e06679..7be779fe4 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html index 1f32c5bef..a8718c258 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -154,7 +154,7 @@ Package com.mxgraph.layout.hierarchical.model -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html index 771716aca..23a5c8d90 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -137,7 +137,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html index f6db6fd3f..e99b37478 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -211,7 +211,7 @@ Classes in
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html index 96712b6a6..697712fcb 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html +++ b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html @@ -2,12 +2,12 @@ - + -mxHierarchicalLayout (mxGraph 1.10.1.5 API Specification) +mxHierarchicalLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxHierarchicalLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHierarchicalLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxHierarchicalLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1289,7 +1289,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html index f74169495..72f034250 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html index 98f7dcd60..ac26ea03b 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -122,7 +122,7 @@ Package com.mxgraph.layout.hierarchical -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html index 4c30fb21f..94ac27fbb 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/package-use.html index d553f766f..ce03a6bb9 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -154,7 +154,7 @@ Classes in
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html index 396960e1f..ff2c20294 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaS function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpa -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html index 6ec0120d2..6ac5bcccb 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.Weigh function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.Weighte -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html index 7e5101be2..031be2c06 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGr function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html index b85d51e5f..5294ffeb1 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStag function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html index 4910791d3..745a4fada 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduct function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReductio -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html index d56028747..ea4c09761 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduct function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReductio -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html index 8e94b60bf..a067b1e79 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGra function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html index e33cd117e..5938112f3 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.1.5 API Specification) +mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -301,7 +301,7 @@ protected mxCoordinateAssignment.AreaSpatialCache() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html index 335fa2f27..c7d908ca4 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.1.5 API Specification) +mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -364,7 +364,7 @@ public int compareTo(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html index 42f80665b..8937f18f9 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html @@ -2,12 +2,12 @@ - + -mxCoordinateAssignment (mxGraph 1.10.1.5 API Specification) +mxCoordinateAssignment (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCoordinateAssignment (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCoordinateAssignment (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCoordinateAssignment (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1408,7 +1408,7 @@ public void setLoggerLevel(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html index fc7b8bfb7..ea2f41c75 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html @@ -2,12 +2,12 @@ - + -mxHierarchicalLayoutStage (mxGraph 1.10.1.5 API Specification) +mxHierarchicalLayoutStage (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxHierarchicalLayoutStage (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHierarchicalLayoutStage (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxHierarchicalLayoutStage (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -180,7 +180,7 @@ void execute(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html index e0171d939..0228b05cf 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html @@ -2,12 +2,12 @@ - + -mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.1.5 API Specification) +mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -269,7 +269,7 @@ public int compareTo(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html index e5c6b4980..017917574 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html @@ -2,12 +2,12 @@ - + -mxMedianHybridCrossingReduction (mxGraph 1.10.1.5 API Specification) +mxMedianHybridCrossingReduction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMedianHybridCrossingReduction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMedianHybridCrossingReduction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMedianHybridCrossingReduction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -412,7 +412,7 @@ protected int calculateRankCrossing(int i, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html index bbc8c6b5e..a56e34f90 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html @@ -2,12 +2,12 @@ - + -mxMinimumCycleRemover (mxGraph 1.10.1.5 API Specification) +mxMinimumCycleRemover (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMinimumCycleRemover (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMinimumCycleRemover (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMinimumCycleRemover (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -264,7 +264,7 @@ public void execute(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html index 7ba893276..3399656ac 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html index 06f99bf93..55c2b8661 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -144,7 +144,7 @@ Package com.mxgraph.layout.hierarchical.stage -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html index b58164bdf..9e7f70b71 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -136,7 +136,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html index 108e44b74..7e5fdf89f 100644 --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -135,7 +135,7 @@ Classes in
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxCircleLayout.html b/java/docs/com/mxgraph/layout/mxCircleLayout.html index 186c1a434..f44d136a9 100644 --- a/java/docs/com/mxgraph/layout/mxCircleLayout.html +++ b/java/docs/com/mxgraph/layout/mxCircleLayout.html @@ -2,12 +2,12 @@ - + -mxCircleLayout (mxGraph 1.10.1.5 API Specification) +mxCircleLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCircleLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCircleLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCircleLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -671,7 +671,7 @@ public void circle(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html index 493204bc3..6763bd1c7 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.Polygon (mxGraph 1.10.1.5 API Specification) +mxCompactTreeLayout.Polygon (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.Polygon (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -278,7 +278,7 @@ protected mxCompactTreeLayout.Polygon() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html index 9a210c4a2..60714dcbe 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.Polyline (mxGraph 1.10.1.5 API Specification) +mxCompactTreeLayout.Polyline (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.Polyline (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -264,7 +264,7 @@ protected mxCompactTreeLayout.Polyline(double dx, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html index b04757387..aec905d9e 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.TreeNode (mxGraph 1.10.1.5 API Specification) +mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.TreeNode (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -384,7 +384,7 @@ public mxCompactTreeLayout.TreeNode(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html index f9f595a69..a895dba0a 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.1.5 API Specification) +mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -344,7 +344,7 @@ public int compareTo(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html index 0dee1ba73..0c2fca85c 100644 --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html @@ -2,12 +2,12 @@ - + -mxCompactTreeLayout (mxGraph 1.10.1.5 API Specification) +mxCompactTreeLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCompactTreeLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCompactTreeLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCompactTreeLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1455,7 +1455,7 @@ protected void processNodeOutgoing(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html index 1f7076728..bd60d694a 100644 --- a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html +++ b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html @@ -2,12 +2,12 @@ - + -mxEdgeLabelLayout (mxGraph 1.10.1.5 API Specification) +mxEdgeLabelLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeLabelLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeLabelLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEdgeLabelLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -294,7 +294,7 @@ protected void avoid(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html index 0571524a6..c15e8f891 100644 --- a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html @@ -2,12 +2,12 @@ - + -mxFastOrganicLayout (mxGraph 1.10.1.5 API Specification) +mxFastOrganicLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxFastOrganicLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxFastOrganicLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxFastOrganicLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1171,7 +1171,7 @@ protected void calcRepulsion() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxGraphLayout.html b/java/docs/com/mxgraph/layout/mxGraphLayout.html index ddb9180f6..bf1c93917 100644 --- a/java/docs/com/mxgraph/layout/mxGraphLayout.html +++ b/java/docs/com/mxgraph/layout/mxGraphLayout.html @@ -2,12 +2,12 @@ - + -mxGraphLayout (mxGraph 1.10.1.5 API Specification) +mxGraphLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -747,7 +747,7 @@ public void arrangeGroups(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/mxIGraphLayout.html index 507e050f4..28011816f 100644 --- a/java/docs/com/mxgraph/layout/mxIGraphLayout.html +++ b/java/docs/com/mxgraph/layout/mxIGraphLayout.html @@ -2,12 +2,12 @@ - + -mxIGraphLayout (mxGraph 1.10.1.5 API Specification) +mxIGraphLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxIGraphLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -203,7 +203,7 @@ void moveCell(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html index dd6d122c6..fec3a90a3 100644 --- a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html +++ b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html @@ -2,12 +2,12 @@ - + -mxOrganicLayout.CellWrapper (mxGraph 1.10.1.5 API Specification) +mxOrganicLayout.CellWrapper (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxOrganicLayout.CellWrapper (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -741,7 +741,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.html index 09919a1bd..b00e0595d 100644 --- a/java/docs/com/mxgraph/layout/mxOrganicLayout.html +++ b/java/docs/com/mxgraph/layout/mxOrganicLayout.html @@ -2,12 +2,12 @@ - + -mxOrganicLayout (mxGraph 1.10.1.5 API Specification) +mxOrganicLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxOrganicLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrganicLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxOrganicLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -2547,7 +2547,7 @@ public void setResetEdges(boolean resetEdges) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html index 6531da835..1d1b2e9aa 100644 --- a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html +++ b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html @@ -2,12 +2,12 @@ - + -mxParallelEdgeLayout (mxGraph 1.10.1.5 API Specification) +mxParallelEdgeLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxParallelEdgeLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxParallelEdgeLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxParallelEdgeLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -381,7 +381,7 @@ protected void route(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/mxPartitionLayout.html index c8fd168f0..f6caf75ef 100644 --- a/java/docs/com/mxgraph/layout/mxPartitionLayout.html +++ b/java/docs/com/mxgraph/layout/mxPartitionLayout.html @@ -2,12 +2,12 @@ - + -mxPartitionLayout (mxGraph 1.10.1.5 API Specification) +mxPartitionLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPartitionLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPartitionLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPartitionLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -466,7 +466,7 @@ public void execute(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/mxStackLayout.html b/java/docs/com/mxgraph/layout/mxStackLayout.html index b84d3fd64..aa829d7f1 100644 --- a/java/docs/com/mxgraph/layout/mxStackLayout.html +++ b/java/docs/com/mxgraph/layout/mxStackLayout.html @@ -2,12 +2,12 @@ - + -mxStackLayout (mxGraph 1.10.1.5 API Specification) +mxStackLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStackLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStackLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStackLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -568,7 +568,7 @@ public void execute(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html index 33e6acfa8..59e8f58d3 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html +++ b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.mxOrthogonalLayout -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html index 2dbca2d7f..dd7643828 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html index f47152e43..0351292f3 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.model.mxPointPair -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html index 47dd5e078..afe1370a2 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.model.mxPointSequence -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html index ef73cccd3..436e6ef34 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal.model.mxSegment -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html index 9a9e4ca53..711a7b706 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html @@ -2,12 +2,12 @@ - + -mxOrthogonalModel (mxGraph 1.10.1.5 API Specification) +mxOrthogonalModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxOrthogonalModel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrthogonalModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxOrthogonalModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -187,7 +187,7 @@ public mxOrthogonalModel(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html index 59263e08b..94e8b2d48 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html @@ -2,12 +2,12 @@ - + -mxPointPair (mxGraph 1.10.1.5 API Specification) +mxPointPair (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPointPair (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPointPair (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPointPair (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -183,7 +183,7 @@ public mxPointPair() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html index 15279a9a2..ee51fff0d 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html @@ -2,12 +2,12 @@ - + -mxPointSequence (mxGraph 1.10.1.5 API Specification) +mxPointSequence (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPointSequence (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPointSequence (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPointSequence (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -183,7 +183,7 @@ public mxPointSequence() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html index 7f1c2c018..a13833a78 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html @@ -2,12 +2,12 @@ - + -mxSegment (mxGraph 1.10.1.5 API Specification) +mxSegment (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSegment (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSegment (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSegment (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -183,7 +183,7 @@ public mxSegment() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html index aa5748cf1..b9daaa4b9 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html index b4e063dac..30b44849d 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -134,7 +134,7 @@ Package com.mxgraph.layout.orthogonal.model -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html index 956722cc7..cfc4e0226 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -118,7 +118,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html index ba6e82678..a4be8936a 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -135,7 +135,7 @@ Classes in
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html index eb7addf64..6634bc8df 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html +++ b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html @@ -2,12 +2,12 @@ - + -mxOrthogonalLayout (mxGraph 1.10.1.5 API Specification) +mxOrthogonalLayout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxOrthogonalLayout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxOrthogonalLayout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxOrthogonalLayout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -297,7 +297,7 @@ public void execute(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html index 3e4fae4d3..b1ccd692b 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-frame.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html index 571de7949..6b73b7923 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -122,7 +122,7 @@ Package com.mxgraph.layout.orthogonal -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html index 2fcb2da68..396a55a6e 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/package-use.html index 62af34da4..35abf6df1 100644 --- a/java/docs/com/mxgraph/layout/orthogonal/package-use.html +++ b/java/docs/com/mxgraph/layout/orthogonal/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.layout.orthogonal -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/package-frame.html b/java/docs/com/mxgraph/layout/package-frame.html index eea99de52..91f12c0cc 100644 --- a/java/docs/com/mxgraph/layout/package-frame.html +++ b/java/docs/com/mxgraph/layout/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/layout/package-summary.html b/java/docs/com/mxgraph/layout/package-summary.html index bbec9be9d..502cb17eb 100644 --- a/java/docs/com/mxgraph/layout/package-summary.html +++ b/java/docs/com/mxgraph/layout/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -196,7 +196,7 @@ This package contains various graph layouts. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/package-tree.html b/java/docs/com/mxgraph/layout/package-tree.html index 4176e5460..713f9d007 100644 --- a/java/docs/com/mxgraph/layout/package-tree.html +++ b/java/docs/com/mxgraph/layout/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.layout Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.layout Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.layout Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -127,7 +127,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/layout/package-use.html b/java/docs/com/mxgraph/layout/package-use.html index 0ab0c1484..083fdd3b0 100644 --- a/java/docs/com/mxgraph/layout/package-use.html +++ b/java/docs/com/mxgraph/layout/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.layout (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.layout (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.layout (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -236,7 +236,7 @@ Classes in
com.mxgrap -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxCell.html b/java/docs/com/mxgraph/model/class-use/mxCell.html index 267101ea2..e6d63f327 100644 --- a/java/docs/com/mxgraph/model/class-use/mxCell.html +++ b/java/docs/com/mxgraph/model/class-use/mxCell.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -155,7 +155,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxCellPath.html b/java/docs/com/mxgraph/model/class-use/mxCellPath.html index 4fb557d99..93ea1f0e3 100644 --- a/java/docs/com/mxgraph/model/class-use/mxCellPath.html +++ b/java/docs/com/mxgraph/model/class-use/mxCellPath.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxCellPath -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGeometry.html b/java/docs/com/mxgraph/model/class-use/mxGeometry.html index 0533e07c2..d8befd9ec 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGeometry.html +++ b/java/docs/com/mxgraph/model/class-use/mxGeometry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -396,7 +396,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html index 0bd234499..0edf4e208 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -165,7 +165,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html index 7de2c2c0b..ff00c12d4 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -270,7 +270,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html index 0454fac3c..686462fc1 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxChildChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html index 62856e957..ab4cc8707 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxCollapseChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html index 806f4bd31..4d887e80b 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxGeometryChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html index e9d8a1efb..4b6935f4d 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxRootChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html index 315608d58..25943da52 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxStyleChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html index 434e76e8b..7f1d12898 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxTerminalChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html index b29c5b8ea..e48d79028 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxValueChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html index c33a46559..de16d17fb 100644 --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.1.5 A function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.model.mxGraphModel.mxVisibleChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxICell.html b/java/docs/com/mxgraph/model/class-use/mxICell.html index 6d53118b7..bf6df0992 100644 --- a/java/docs/com/mxgraph/model/class-use/mxICell.html +++ b/java/docs/com/mxgraph/model/class-use/mxICell.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -686,7 +686,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html index a8f9ee8ab..ac8a6adad 100644 --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -584,7 +584,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html index 2a71761c0..de6a88889 100644 --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -265,7 +265,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxCell.html b/java/docs/com/mxgraph/model/mxCell.html index 92e64a500..44f95450c 100644 --- a/java/docs/com/mxgraph/model/mxCell.html +++ b/java/docs/com/mxgraph/model/mxCell.html @@ -2,12 +2,12 @@ - + -mxCell (mxGraph 1.10.1.5 API Specification) +mxCell (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCell (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCell (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCell (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1749,7 +1749,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxCellPath.html b/java/docs/com/mxgraph/model/mxCellPath.html index 4c3a57647..0193dfa88 100644 --- a/java/docs/com/mxgraph/model/mxCellPath.html +++ b/java/docs/com/mxgraph/model/mxCellPath.html @@ -2,12 +2,12 @@ - + -mxCellPath (mxGraph 1.10.1.5 API Specification) +mxCellPath (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellPath (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellPath (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellPath (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -333,7 +333,7 @@ public static int compare(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGeometry.html b/java/docs/com/mxgraph/model/mxGeometry.html index f50c47b39..6ef594fc1 100644 --- a/java/docs/com/mxgraph/model/mxGeometry.html +++ b/java/docs/com/mxgraph/model/mxGeometry.html @@ -2,12 +2,12 @@ - + -mxGeometry (mxGraph 1.10.1.5 API Specification) +mxGeometry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGeometry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGeometry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGeometry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -833,7 +833,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html index dcae8e5b8..30df31783 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html @@ -2,12 +2,12 @@ - + -mxGraphModel.Filter (mxGraph 1.10.1.5 API Specification) +mxGraphModel.Filter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.Filter (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.Filter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.Filter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -168,7 +168,7 @@ boolean filter(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.html b/java/docs/com/mxgraph/model/mxGraphModel.html index 8e30d37d3..ab2e0da5e 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.html @@ -2,12 +2,12 @@ - + -mxGraphModel (mxGraph 1.10.1.5 API Specification) +mxGraphModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -2882,7 +2882,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html index db6e72b06..50bd09116 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxChildChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxChildChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxChildChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxChildChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxChildChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -682,7 +682,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html index c24d75e6e..d941601b0 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxCollapseChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxCollapseChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxCollapseChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html index 3c91de723..383befd0c 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxGeometryChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxGeometryChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxGeometryChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html index a2d419f92..c751db2f8 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxRootChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxRootChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxRootChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxRootChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxRootChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -393,7 +393,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html index e73ca949a..aace88348 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxStyleChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxStyleChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxStyleChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxStyleChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxStyleChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html index be70c155f..429a0a213 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxTerminalChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxTerminalChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxTerminalChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -507,7 +507,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html index cb865ddb1..85a7bcc8d 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxValueChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxValueChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxValueChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxValueChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxValueChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html index c452bb749..78d112b10 100644 --- a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html @@ -2,12 +2,12 @@ - + -mxGraphModel.mxVisibleChange (mxGraph 1.10.1.5 API Specification) +mxGraphModel.mxVisibleChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphModel.mxVisibleChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -448,7 +448,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxICell.html b/java/docs/com/mxgraph/model/mxICell.html index d46c87e22..28d0a2dcf 100644 --- a/java/docs/com/mxgraph/model/mxICell.html +++ b/java/docs/com/mxgraph/model/mxICell.html @@ -2,12 +2,12 @@ - + -mxICell (mxGraph 1.10.1.5 API Specification) +mxICell (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxICell (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICell (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxICell (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -919,7 +919,7 @@ clone -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.html b/java/docs/com/mxgraph/model/mxIGraphModel.html index 1ded64c94..01aba4a69 100644 --- a/java/docs/com/mxgraph/model/mxIGraphModel.html +++ b/java/docs/com/mxgraph/model/mxIGraphModel.html @@ -2,12 +2,12 @@ - + -mxIGraphModel (mxGraph 1.10.1.5 API Specification) +mxIGraphModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphModel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxIGraphModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -925,7 +925,7 @@ void removeListener(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html index 2b00af09e..c37981a35 100644 --- a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html +++ b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html @@ -2,12 +2,12 @@ - + -mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.1.5 API Specification) +mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -333,7 +333,7 @@ public abstract void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/package-frame.html b/java/docs/com/mxgraph/model/package-frame.html index 861a9fce6..591e43e4c 100644 --- a/java/docs/com/mxgraph/model/package-frame.html +++ b/java/docs/com/mxgraph/model/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model (mxGraph 1.10.1.5 API Specification) +com.mxgraph.model (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/model/package-summary.html b/java/docs/com/mxgraph/model/package-summary.html index f284bae2e..c675bdfe3 100644 --- a/java/docs/com/mxgraph/model/package-summary.html +++ b/java/docs/com/mxgraph/model/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model (mxGraph 1.10.1.5 API Specification) +com.mxgraph.model (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.model (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -207,7 +207,7 @@ This package contains the classes that define a graph model. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/package-tree.html b/java/docs/com/mxgraph/model/package-tree.html index bc9ff808e..ce1c48890 100644 --- a/java/docs/com/mxgraph/model/package-tree.html +++ b/java/docs/com/mxgraph/model/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.model Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.model Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.model Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -135,7 +135,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/model/package-use.html b/java/docs/com/mxgraph/model/package-use.html index a633c52d4..a54f0d608 100644 --- a/java/docs/com/mxgraph/model/package-use.html +++ b/java/docs/com/mxgraph/model/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.model (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.model (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.model (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.model (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.model (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -263,7 +263,7 @@ Classes in
com.mxgraph -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html index d160a945d..fa6f1c5d2 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html index a5449eb47..6bddfdbed 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.reader.mxDomOutputParser -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html index 490d130b3..376341e9d 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html +++ b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -156,7 +156,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html index 30c792a73..66a9f21c8 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html +++ b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html index 28bb88df9..a937582d2 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html index 75da2673a..a0acbd98c 100644 --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.reader.mxSaxOutputHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html index 479b621b6..63d1a9430 100644 --- a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html @@ -2,12 +2,12 @@ - + -mxDomOutputParser.IElementHandler (mxGraph 1.10.1.5 API Specification) +mxDomOutputParser.IElementHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxDomOutputParser.IElementHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -168,7 +168,7 @@ void parseElement(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.html index 6778894e7..d3fbaf616 100644 --- a/java/docs/com/mxgraph/reader/mxDomOutputParser.html +++ b/java/docs/com/mxgraph/reader/mxDomOutputParser.html @@ -2,12 +2,12 @@ - + -mxDomOutputParser (mxGraph 1.10.1.5 API Specification) +mxDomOutputParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxDomOutputParser (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomOutputParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxDomOutputParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -368,7 +368,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html index 1e9f1970f..bf518f8a3 100644 --- a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html +++ b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html @@ -2,12 +2,12 @@ - + -mxGraphViewImageReader (mxGraph 1.10.1.5 API Specification) +mxGraphViewImageReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphViewImageReader (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphViewImageReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphViewImageReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -730,7 +730,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/mxGraphViewReader.html index 52ca143ff..c82a6bf27 100644 --- a/java/docs/com/mxgraph/reader/mxGraphViewReader.html +++ b/java/docs/com/mxgraph/reader/mxGraphViewReader.html @@ -2,12 +2,12 @@ - + -mxGraphViewReader (mxGraph 1.10.1.5 API Specification) +mxGraphViewReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphViewReader (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphViewReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphViewReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -480,7 +480,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html index 8a239ebd8..c03d7e6d5 100644 --- a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html +++ b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html @@ -2,12 +2,12 @@ - + -mxSaxOutputHandler.IElementHandler (mxGraph 1.10.1.5 API Specification) +mxSaxOutputHandler.IElementHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSaxOutputHandler.IElementHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -168,7 +168,7 @@ void parseElement(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html index 5899c567f..0195c7dc3 100644 --- a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html +++ b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html @@ -2,12 +2,12 @@ - + -mxSaxOutputHandler (mxGraph 1.10.1.5 API Specification) +mxSaxOutputHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSaxOutputHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSaxOutputHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSaxOutputHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -401,7 +401,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/package-frame.html b/java/docs/com/mxgraph/reader/package-frame.html index 4c4bbc427..a092c8b22 100644 --- a/java/docs/com/mxgraph/reader/package-frame.html +++ b/java/docs/com/mxgraph/reader/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader (mxGraph 1.10.1.5 API Specification) +com.mxgraph.reader (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/reader/package-summary.html b/java/docs/com/mxgraph/reader/package-summary.html index 82bcfef90..f62e822e3 100644 --- a/java/docs/com/mxgraph/reader/package-summary.html +++ b/java/docs/com/mxgraph/reader/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader (mxGraph 1.10.1.5 API Specification) +com.mxgraph.reader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.reader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -211,7 +211,7 @@ This package contains the classes required to turn an encoded mxGraphView -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/package-tree.html b/java/docs/com/mxgraph/reader/package-tree.html index f21a109e0..07efb23cd 100644 --- a/java/docs/com/mxgraph/reader/package-tree.html +++ b/java/docs/com/mxgraph/reader/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.reader Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.reader Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.reader Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -128,7 +128,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/reader/package-use.html b/java/docs/com/mxgraph/reader/package-use.html index 7c54dc942..f1d8fa37f 100644 --- a/java/docs/com/mxgraph/reader/package-use.html +++ b/java/docs/com/mxgraph/reader/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.reader (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.reader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.reader (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -154,7 +154,7 @@ Classes in
com.mxgrap -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html index 3caf41f33..e2e28c68f 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxActorShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html index 84be8a17f..0faf3d962 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxArrowShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html index 935dfca2e..a954edaff 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -274,7 +274,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html index d9b0f3108..1baa301a2 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCloudShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html index 31657a046..1b7cce46a 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html index 3978c6d9b..6c643dc14 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html index 7bf258694..e74578b53 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html index b7d25ff2f..9f255bcb2 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCurveLabelShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html index 4b029c938..573f79caa 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCurveShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html index a4e876dcf..0c3a12cab 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxCylinderShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html index 77dda45a1..675ba406c 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxDefaultTextShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html index 6e5bedd3c..4a2c59eda 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxDoubleEllipseShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html index a590e9199..43085592e 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html index 41e01ea1d..300211d28 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxHexagonShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html index b59ca71dc..fbc22af07 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxHtmlTextShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html index eaa2ead39..bbdc5678b 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html +++ b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxIShape.html b/java/docs/com/mxgraph/shape/class-use/mxIShape.html index 96ea20d58..a16ed6f05 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxIShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxIShape.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -353,7 +353,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html index 1fba791b2..d295b5bee 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -226,7 +226,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html index a6ced1135..d1b571690 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html index 109c73081..c7d764c3d 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxLabelShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html index 7c7aaab49..e95133fb7 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxLineShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html index 1757fb8c6..a8e30e9b2 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html +++ b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxMarkerRegistry -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html index 3a8bb1e5e..16102d6b0 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -153,7 +153,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html index 82cb2be58..c873960a6 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxRhombusShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencil.html b/java/docs/com/mxgraph/shape/class-use/mxStencil.html index 93ecefa86..fce2a27e1 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencil.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencil.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html index 3af91067d..c43d9dc18 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxStencilRegistry -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html index a43bab0f2..5d06d75eb 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxStencilShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html index d11fe70d1..3a18fc461 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -207,7 +207,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html index 85ce09ef2..bee878900 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxSwimlaneShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html index c0228635a..fca5e2157 100644 --- a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html +++ b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.shape.mxTriangleShape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxActorShape.html b/java/docs/com/mxgraph/shape/mxActorShape.html index 91c80c6bb..1277608dd 100644 --- a/java/docs/com/mxgraph/shape/mxActorShape.html +++ b/java/docs/com/mxgraph/shape/mxActorShape.html @@ -2,12 +2,12 @@ - + -mxActorShape (mxGraph 1.10.1.5 API Specification) +mxActorShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxActorShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxActorShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxActorShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxArrowShape.html b/java/docs/com/mxgraph/shape/mxArrowShape.html index b3162fee0..5fa8a3547 100644 --- a/java/docs/com/mxgraph/shape/mxArrowShape.html +++ b/java/docs/com/mxgraph/shape/mxArrowShape.html @@ -2,12 +2,12 @@ - + -mxArrowShape (mxGraph 1.10.1.5 API Specification) +mxArrowShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxArrowShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxArrowShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxArrowShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxBasicShape.html b/java/docs/com/mxgraph/shape/mxBasicShape.html index 9b8286f58..552b40b2e 100644 --- a/java/docs/com/mxgraph/shape/mxBasicShape.html +++ b/java/docs/com/mxgraph/shape/mxBasicShape.html @@ -2,12 +2,12 @@ - + -mxBasicShape (mxGraph 1.10.1.5 API Specification) +mxBasicShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxBasicShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBasicShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxBasicShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -396,7 +396,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxCloudShape.html b/java/docs/com/mxgraph/shape/mxCloudShape.html index 391591cf8..379d0065b 100644 --- a/java/docs/com/mxgraph/shape/mxCloudShape.html +++ b/java/docs/com/mxgraph/shape/mxCloudShape.html @@ -2,12 +2,12 @@ - + -mxCloudShape (mxGraph 1.10.1.5 API Specification) +mxCloudShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCloudShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCloudShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCloudShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxConnectorShape.html b/java/docs/com/mxgraph/shape/mxConnectorShape.html index 58f035540..1c4c357fa 100644 --- a/java/docs/com/mxgraph/shape/mxConnectorShape.html +++ b/java/docs/com/mxgraph/shape/mxConnectorShape.html @@ -2,12 +2,12 @@ - + -mxConnectorShape (mxGraph 1.10.1.5 API Specification) +mxConnectorShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxConnectorShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectorShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxConnectorShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -330,7 +330,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html index abb18a529..497c5acb3 100644 --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html @@ -2,12 +2,12 @@ - + -mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.1.5 API Specification) +mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -334,7 +334,7 @@ public mxCurveLabelShape.LabelGlyphCache() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html index 83362fa61..492da4b49 100644 --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html @@ -2,12 +2,12 @@ - + -mxCurveLabelShape.LabelPosition (mxGraph 1.10.1.5 API Specification) +mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape.LabelPosition (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -263,7 +263,7 @@ public mxCurveLabelShape.LabelPosition() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.html index dd385011e..73a0972c0 100644 --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.html +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.html @@ -2,12 +2,12 @@ - + -mxCurveLabelShape (mxGraph 1.10.1.5 API Specification) +mxCurveLabelShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCurveLabelShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveLabelShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCurveLabelShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -866,7 +866,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxCurveShape.html b/java/docs/com/mxgraph/shape/mxCurveShape.html index c52aa24d4..4bad7e39b 100644 --- a/java/docs/com/mxgraph/shape/mxCurveShape.html +++ b/java/docs/com/mxgraph/shape/mxCurveShape.html @@ -2,12 +2,12 @@ - + -mxCurveShape (mxGraph 1.10.1.5 API Specification) +mxCurveShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCurveShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurveShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCurveShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -396,7 +396,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxCylinderShape.html b/java/docs/com/mxgraph/shape/mxCylinderShape.html index a45ece67a..7e4ea13f5 100644 --- a/java/docs/com/mxgraph/shape/mxCylinderShape.html +++ b/java/docs/com/mxgraph/shape/mxCylinderShape.html @@ -2,12 +2,12 @@ - + -mxCylinderShape (mxGraph 1.10.1.5 API Specification) +mxCylinderShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCylinderShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCylinderShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCylinderShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -231,7 +231,7 @@ public void paintShape(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html index 4ec256842..7a02ec42a 100644 --- a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html +++ b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html @@ -2,12 +2,12 @@ - + -mxDefaultTextShape (mxGraph 1.10.1.5 API Specification) +mxDefaultTextShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxDefaultTextShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDefaultTextShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxDefaultTextShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -257,7 +257,7 @@ protected void postProcessLine(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html index 97afbaf5d..5617c8a8b 100644 --- a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html +++ b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html @@ -2,12 +2,12 @@ - + -mxDoubleEllipseShape (mxGraph 1.10.1.5 API Specification) +mxDoubleEllipseShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxDoubleEllipseShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDoubleEllipseShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxDoubleEllipseShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -239,7 +239,7 @@ public void paintShape(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxEllipseShape.html b/java/docs/com/mxgraph/shape/mxEllipseShape.html index 4e984218d..3806bb46e 100644 --- a/java/docs/com/mxgraph/shape/mxEllipseShape.html +++ b/java/docs/com/mxgraph/shape/mxEllipseShape.html @@ -2,12 +2,12 @@ - + -mxEllipseShape (mxGraph 1.10.1.5 API Specification) +mxEllipseShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEllipseShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEllipseShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEllipseShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -232,7 +232,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxHexagonShape.html b/java/docs/com/mxgraph/shape/mxHexagonShape.html index e5efed730..5dfff7c01 100644 --- a/java/docs/com/mxgraph/shape/mxHexagonShape.html +++ b/java/docs/com/mxgraph/shape/mxHexagonShape.html @@ -2,12 +2,12 @@ - + -mxHexagonShape (mxGraph 1.10.1.5 API Specification) +mxHexagonShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxHexagonShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHexagonShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxHexagonShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html index 998458580..9b5aa3287 100644 --- a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html +++ b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html @@ -2,12 +2,12 @@ - + -mxHtmlTextShape (mxGraph 1.10.1.5 API Specification) +mxHtmlTextShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxHtmlTextShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxHtmlTextShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxHtmlTextShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -352,7 +352,7 @@ public void paintShape(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxIMarker.html b/java/docs/com/mxgraph/shape/mxIMarker.html index fcda3d509..c78bb12e3 100644 --- a/java/docs/com/mxgraph/shape/mxIMarker.html +++ b/java/docs/com/mxgraph/shape/mxIMarker.html @@ -2,12 +2,12 @@ - + -mxIMarker (mxGraph 1.10.1.5 API Specification) +mxIMarker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxIMarker (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIMarker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxIMarker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -179,7 +179,7 @@ paintMarker -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxIShape.html b/java/docs/com/mxgraph/shape/mxIShape.html index 79994e162..74f7622b8 100644 --- a/java/docs/com/mxgraph/shape/mxIShape.html +++ b/java/docs/com/mxgraph/shape/mxIShape.html @@ -2,12 +2,12 @@ - + -mxIShape (mxGraph 1.10.1.5 API Specification) +mxIShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxIShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxIShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxIShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ void paintShape(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxITextShape.html b/java/docs/com/mxgraph/shape/mxITextShape.html index ea8f088b1..b621c67b9 100644 --- a/java/docs/com/mxgraph/shape/mxITextShape.html +++ b/java/docs/com/mxgraph/shape/mxITextShape.html @@ -2,12 +2,12 @@ - + -mxITextShape (mxGraph 1.10.1.5 API Specification) +mxITextShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxITextShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxITextShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxITextShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -174,7 +174,7 @@ void paintShape(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxImageShape.html b/java/docs/com/mxgraph/shape/mxImageShape.html index 6f86d7368..92815e659 100644 --- a/java/docs/com/mxgraph/shape/mxImageShape.html +++ b/java/docs/com/mxgraph/shape/mxImageShape.html @@ -2,12 +2,12 @@ - + -mxImageShape (mxGraph 1.10.1.5 API Specification) +mxImageShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxImageShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxImageShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -360,7 +360,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxLabelShape.html b/java/docs/com/mxgraph/shape/mxLabelShape.html index c04600956..ee5643251 100644 --- a/java/docs/com/mxgraph/shape/mxLabelShape.html +++ b/java/docs/com/mxgraph/shape/mxLabelShape.html @@ -2,12 +2,12 @@ - + -mxLabelShape (mxGraph 1.10.1.5 API Specification) +mxLabelShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxLabelShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLabelShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxLabelShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -368,7 +368,7 @@ public boolean hasGradient(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxLineShape.html b/java/docs/com/mxgraph/shape/mxLineShape.html index b7f01710e..d471a5a9e 100644 --- a/java/docs/com/mxgraph/shape/mxLineShape.html +++ b/java/docs/com/mxgraph/shape/mxLineShape.html @@ -2,12 +2,12 @@ - + -mxLineShape (mxGraph 1.10.1.5 API Specification) +mxLineShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxLineShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLineShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxLineShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -250,7 +250,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html index e90b77200..4b435cc92 100644 --- a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html +++ b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html @@ -2,12 +2,12 @@ - + -mxMarkerRegistry (mxGraph 1.10.1.5 API Specification) +mxMarkerRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMarkerRegistry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMarkerRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMarkerRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -268,7 +268,7 @@ public static void registerMarker(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxRectangleShape.html b/java/docs/com/mxgraph/shape/mxRectangleShape.html index 5996a5d1b..0c13de781 100644 --- a/java/docs/com/mxgraph/shape/mxRectangleShape.html +++ b/java/docs/com/mxgraph/shape/mxRectangleShape.html @@ -2,12 +2,12 @@ - + -mxRectangleShape (mxGraph 1.10.1.5 API Specification) +mxRectangleShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxRectangleShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangleShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxRectangleShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -256,7 +256,7 @@ public int getArcSize(int w, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxRhombusShape.html b/java/docs/com/mxgraph/shape/mxRhombusShape.html index fc4eb45dd..3bafd12fa 100644 --- a/java/docs/com/mxgraph/shape/mxRhombusShape.html +++ b/java/docs/com/mxgraph/shape/mxRhombusShape.html @@ -2,12 +2,12 @@ - + -mxRhombusShape (mxGraph 1.10.1.5 API Specification) +mxRhombusShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxRhombusShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRhombusShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxRhombusShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxStencil.html b/java/docs/com/mxgraph/shape/mxStencil.html index 7ddd10678..cf20d3349 100644 --- a/java/docs/com/mxgraph/shape/mxStencil.html +++ b/java/docs/com/mxgraph/shape/mxStencil.html @@ -2,12 +2,12 @@ - + -mxStencil (mxGraph 1.10.1.5 API Specification) +mxStencil (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStencil (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencil (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStencil (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -793,7 +793,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/mxStencilRegistry.html index 7048d5a2e..6fbddbdc1 100644 --- a/java/docs/com/mxgraph/shape/mxStencilRegistry.html +++ b/java/docs/com/mxgraph/shape/mxStencilRegistry.html @@ -2,12 +2,12 @@ - + -mxStencilRegistry (mxGraph 1.10.1.5 API Specification) +mxStencilRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStencilRegistry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStencilRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -272,7 +272,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.html index 7f7d8e7a1..5a35320fe 100644 --- a/java/docs/com/mxgraph/shape/mxStencilShape.html +++ b/java/docs/com/mxgraph/shape/mxStencilShape.html @@ -2,12 +2,12 @@ - + -mxStencilShape (mxGraph 1.10.1.5 API Specification) +mxStencilShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStencilShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStencilShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -673,7 +673,7 @@ public void setBoundingBox(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html index 6e6eb7971..aad7242f8 100644 --- a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html +++ b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html @@ -2,12 +2,12 @@ - + -mxStencilShape.svgShape (mxGraph 1.10.1.5 API Specification) +mxStencilShape.svgShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStencilShape.svgShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStencilShape.svgShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStencilShape.svgShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -389,7 +389,7 @@ public void setCurrentYScale(double currentYScale) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/mxSwimlaneShape.html index 43a812c49..ee3dc6d61 100644 --- a/java/docs/com/mxgraph/shape/mxSwimlaneShape.html +++ b/java/docs/com/mxgraph/shape/mxSwimlaneShape.html @@ -2,12 +2,12 @@ - + -mxSwimlaneShape (mxGraph 1.10.1.5 API Specification) +mxSwimlaneShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSwimlaneShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -253,7 +253,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/mxTriangleShape.html b/java/docs/com/mxgraph/shape/mxTriangleShape.html index 50eb25191..6727e524d 100644 --- a/java/docs/com/mxgraph/shape/mxTriangleShape.html +++ b/java/docs/com/mxgraph/shape/mxTriangleShape.html @@ -2,12 +2,12 @@ - + -mxTriangleShape (mxGraph 1.10.1.5 API Specification) +mxTriangleShape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxTriangleShape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTriangleShape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxTriangleShape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/package-frame.html b/java/docs/com/mxgraph/shape/package-frame.html index ca19ff952..ad470c1ac 100644 --- a/java/docs/com/mxgraph/shape/package-frame.html +++ b/java/docs/com/mxgraph/shape/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape (mxGraph 1.10.1.5 API Specification) +com.mxgraph.shape (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/shape/package-summary.html b/java/docs/com/mxgraph/shape/package-summary.html index 7d9c27f09..6116aba7b 100644 --- a/java/docs/com/mxgraph/shape/package-summary.html +++ b/java/docs/com/mxgraph/shape/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape (mxGraph 1.10.1.5 API Specification) +com.mxgraph.shape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.shape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -238,7 +238,7 @@ Package com.mxgraph.shape -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/package-tree.html b/java/docs/com/mxgraph/shape/package-tree.html index 88103aab5..d33825d92 100644 --- a/java/docs/com/mxgraph/shape/package-tree.html +++ b/java/docs/com/mxgraph/shape/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.shape Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.shape Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.shape Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -138,7 +138,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/shape/package-use.html b/java/docs/com/mxgraph/shape/package-use.html index 2212b1bda..ad8d32dd8 100644 --- a/java/docs/com/mxgraph/shape/package-use.html +++ b/java/docs/com/mxgraph/shape/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.shape (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.shape (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.shape (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -229,7 +229,7 @@ Classes in
com.mxgraph -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSession.html b/java/docs/com/mxgraph/sharing/class-use/mxSession.html index 7a429056e..53cd0e618 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSession.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSession.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSession (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.sharing.mxSession -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html index 74223e1aa..fe6e2ad77 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedGraphModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedGraphModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.sharing.mxSharedGraphModel -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html index 7fc544c95..a8481c585 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.sharing.mxSharedState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -177,7 +177,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html index 01dfb4fb1..cc130dd22 100644 --- a/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html +++ b/java/docs/com/mxgraph/sharing/class-use/mxSharedState.mxDiagramChangeListener.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxG function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.sharing.mxSharedState.mxDiagramChangeListener (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -186,7 +186,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/mxSession.html b/java/docs/com/mxgraph/sharing/mxSession.html index 0d060d6c0..2d04c6ed4 100644 --- a/java/docs/com/mxgraph/sharing/mxSession.html +++ b/java/docs/com/mxgraph/sharing/mxSession.html @@ -2,12 +2,12 @@ - + -mxSession (mxGraph 1.10.1.5 API Specification) +mxSession (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSession (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSession (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSession (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -566,7 +566,7 @@ public void destroy() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html b/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html index 6697e707b..723182957 100644 --- a/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html +++ b/java/docs/com/mxgraph/sharing/mxSharedGraphModel.html @@ -2,12 +2,12 @@ - + -mxSharedGraphModel (mxGraph 1.10.1.5 API Specification) +mxSharedGraphModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSharedGraphModel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedGraphModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSharedGraphModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -539,7 +539,7 @@ public void cellRemoved(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/mxSharedState.html b/java/docs/com/mxgraph/sharing/mxSharedState.html index ced9f32ef..cb0e45d37 100644 --- a/java/docs/com/mxgraph/sharing/mxSharedState.html +++ b/java/docs/com/mxgraph/sharing/mxSharedState.html @@ -2,12 +2,12 @@ - + -mxSharedState (mxGraph 1.10.1.5 API Specification) +mxSharedState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSharedState (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSharedState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -499,7 +499,7 @@ public void removeDiagramChangeListener(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html b/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html index bce9b82bb..ed0c5db87 100644 --- a/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html +++ b/java/docs/com/mxgraph/sharing/mxSharedState.mxDiagramChangeListener.html @@ -2,12 +2,12 @@ - + -mxSharedState.mxDiagramChangeListener (mxGraph 1.10.1.5 API Specification) +mxSharedState.mxDiagramChangeListener (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSharedState.mxDiagramChangeListener (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSharedState.mxDiagramChangeListener (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSharedState.mxDiagramChangeListener (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -180,7 +180,7 @@ void diagramChanged(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/package-frame.html b/java/docs/com/mxgraph/sharing/package-frame.html index bd6683331..8b445bebb 100644 --- a/java/docs/com/mxgraph/sharing/package-frame.html +++ b/java/docs/com/mxgraph/sharing/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification) +com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/sharing/package-summary.html b/java/docs/com/mxgraph/sharing/package-summary.html index d21ee67cf..a04e0671e 100644 --- a/java/docs/com/mxgraph/sharing/package-summary.html +++ b/java/docs/com/mxgraph/sharing/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification) +com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -162,7 +162,7 @@ This package contains all classes required for concurrent diagram editing -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/package-tree.html b/java/docs/com/mxgraph/sharing/package-tree.html index 734454cac..316eaaf95 100644 --- a/java/docs/com/mxgraph/sharing/package-tree.html +++ b/java/docs/com/mxgraph/sharing/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.sharing Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -128,7 +128,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/sharing/package-use.html b/java/docs/com/mxgraph/sharing/package-use.html index ff83787cb..df39b3029 100644 --- a/java/docs/com/mxgraph/sharing/package-use.html +++ b/java/docs/com/mxgraph/sharing/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.sharing (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.sharing (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -143,7 +143,7 @@ Classes in
com.mxgra -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html index becaf422f..d7fa821cd 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -746,7 +746,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html index ee8e44e12..00d8709b2 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -171,7 +171,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html index 3f7366fda..8b87d1080 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.mxGraphComponent.mxMouseRedirector -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html index c15593d25..d0e6d823c 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html index 755f5916d..8506248f4 100644 --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.mxGraphOutline -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html index f9f123693..27f103c88 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -224,7 +224,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html index 014e76d74..81e7d0d10 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -234,7 +234,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html index a11371a58..7eaf69e2f 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxCellTracker -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html index f9d2d6634..52912d3e8 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.1.5 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -186,7 +186,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html index 46088333e..d7b67bcd9 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html index 87611a43b..c36740bae 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html index f0036aef3..842888303 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxElbowEdgeHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html index 4046c3ba2..029f22937 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.1.5 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html index d13704d37..8b7324215 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html index 81c176d4b..86e8036d8 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxInsertHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html index 24796bb05..4386b8311 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxKeyboardHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html index f25611098..24040bb4d 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html index 3cd23702d..2271d43cd 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.1.5 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html index c7b23bbde..ada1eba67 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxRotationHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html index 78af71f45..f7a7cfd31 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxRubberband -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html index 2369149ff..fb413d30a 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html index 98cfcd9b8..872cb5cd3 100644 --- a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.handler.mxVertexHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html index 4e8c0ed31..dda390cfb 100644 --- a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html @@ -2,12 +2,12 @@ - + -mxCellHandler (mxGraph 1.10.1.5 API Specification) +mxCellHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1038,7 +1038,7 @@ protected void destroy() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html index 88a37703f..1461918b9 100644 --- a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html +++ b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html @@ -2,12 +2,12 @@ - + -mxCellMarker (mxGraph 1.10.1.5 API Specification) +mxCellMarker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellMarker (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellMarker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellMarker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1492,7 +1492,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html index bfd1265ae..e62cb5225 100644 --- a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html +++ b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html @@ -2,12 +2,12 @@ - + -mxCellTracker (mxGraph 1.10.1.5 API Specification) +mxCellTracker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellTracker (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellTracker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellTracker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -505,7 +505,7 @@ public void mouseMoved(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html index 48ff52c9c..d01e51d8e 100644 --- a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html +++ b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html @@ -2,12 +2,12 @@ - + -mxConnectPreview (mxGraph 1.10.1.5 API Specification) +mxConnectPreview (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxConnectPreview (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectPreview (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxConnectPreview (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -636,7 +636,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html index 39ea62fb4..58150fdf6 100644 --- a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html @@ -2,12 +2,12 @@ - + -mxConnectionHandler (mxGraph 1.10.1.5 API Specification) +mxConnectionHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxConnectionHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1365,7 +1365,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html index f162f10a6..344065679 100644 --- a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html @@ -2,12 +2,12 @@ - + -mxEdgeHandler (mxGraph 1.10.1.5 API Specification) +mxEdgeHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEdgeHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1023,7 +1023,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html index c7bfb5245..cd9601a25 100644 --- a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html @@ -2,12 +2,12 @@ - + -mxElbowEdgeHandler (mxGraph 1.10.1.5 API Specification) +mxElbowEdgeHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxElbowEdgeHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxElbowEdgeHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxElbowEdgeHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -340,7 +340,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html index 3b3f6657f..357fd3489 100644 --- a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html @@ -2,12 +2,12 @@ - + -mxGraphHandler (mxGraph 1.10.1.5 API Specification) +mxGraphHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1981,7 +1981,7 @@ protected static final
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html index c9d1470e9..cdb8d3c1a 100644 --- a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html @@ -2,12 +2,12 @@ - + -mxGraphTransferHandler (mxGraph 1.10.1.5 API Specification) +mxGraphTransferHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphTransferHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -944,7 +944,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html index ceb67e9e1..e7fe093af 100644 --- a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html @@ -2,12 +2,12 @@ - + -mxInsertHandler (mxGraph 1.10.1.5 API Specification) +mxInsertHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxInsertHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInsertHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxInsertHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -670,7 +670,7 @@ public void removeListener(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html index 35aa3ce7b..1e0c29249 100644 --- a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html @@ -2,12 +2,12 @@ - + -mxKeyboardHandler (mxGraph 1.10.1.5 API Specification) +mxKeyboardHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxKeyboardHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxKeyboardHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxKeyboardHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -257,7 +257,7 @@ protected
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html index 251438f94..56bab5126 100644 --- a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html +++ b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html @@ -2,12 +2,12 @@ - + -mxMovePreview (mxGraph 1.10.1.5 API Specification) +mxMovePreview (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMovePreview (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMovePreview (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMovePreview (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -973,7 +973,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html index 74527b3cf..0956101ec 100644 --- a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html @@ -2,12 +2,12 @@ - + -mxPanningHandler (mxGraph 1.10.1.5 API Specification) +mxPanningHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPanningHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPanningHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPanningHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -405,7 +405,7 @@ public boolean isActive() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html index 0d4a90af8..d2b7e2a87 100644 --- a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html @@ -2,12 +2,12 @@ - + -mxRotationHandler (mxGraph 1.10.1.5 API Specification) +mxRotationHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxRotationHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRotationHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxRotationHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -622,7 +622,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/mxRubberband.html index 89bc7c576..e7645bd2c 100644 --- a/java/docs/com/mxgraph/swing/handler/mxRubberband.html +++ b/java/docs/com/mxgraph/swing/handler/mxRubberband.html @@ -2,12 +2,12 @@ - + -mxRubberband (mxGraph 1.10.1.5 API Specification) +mxRubberband (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxRubberband (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRubberband (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxRubberband (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -759,7 +759,7 @@ public void mouseMoved(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html index f91a6100d..655618e7e 100644 --- a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html @@ -2,12 +2,12 @@ - + -mxSelectionCellsHandler (mxGraph 1.10.1.5 API Specification) +mxSelectionCellsHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSelectionCellsHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSelectionCellsHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSelectionCellsHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -868,7 +868,7 @@ public void mouseExited(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html index a646ac65b..9db385c35 100644 --- a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html +++ b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html @@ -2,12 +2,12 @@ - + -mxVertexHandler (mxGraph 1.10.1.5 API Specification) +mxVertexHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxVertexHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxVertexHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxVertexHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -558,7 +558,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/package-frame.html b/java/docs/com/mxgraph/swing/handler/package-frame.html index 9ba241ce0..97208e618 100644 --- a/java/docs/com/mxgraph/swing/handler/package-frame.html +++ b/java/docs/com/mxgraph/swing/handler/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/handler/package-summary.html b/java/docs/com/mxgraph/swing/handler/package-summary.html index 67bbd7699..10faefee2 100644 --- a/java/docs/com/mxgraph/swing/handler/package-summary.html +++ b/java/docs/com/mxgraph/swing/handler/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -205,7 +205,7 @@ This package contains all classes required for mouse event handling in -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/package-tree.html b/java/docs/com/mxgraph/swing/handler/package-tree.html index e3c9805cb..b4c50a04e 100644 --- a/java/docs/com/mxgraph/swing/handler/package-tree.html +++ b/java/docs/com/mxgraph/swing/handler/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -144,7 +144,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/handler/package-use.html b/java/docs/com/mxgraph/swing/handler/package-use.html index 35161fc64..fa2e62da0 100644 --- a/java/docs/com/mxgraph/swing/handler/package-use.html +++ b/java/docs/com/mxgraph/swing/handler/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -210,7 +210,7 @@ Classes in
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.html b/java/docs/com/mxgraph/swing/mxGraphComponent.html index ef287ccf1..ec2254317 100644 --- a/java/docs/com/mxgraph/swing/mxGraphComponent.html +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.html @@ -2,12 +2,12 @@ - + -mxGraphComponent (mxGraph 1.10.1.5 API Specification) +mxGraphComponent (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphComponent (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -6357,7 +6357,7 @@ public void removeListener(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html index a75dd9def..a8d99b339 100644 --- a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html @@ -2,12 +2,12 @@ - + -mxGraphComponent.mxGraphControl (mxGraph 1.10.1.5 API Specification) +mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxGraphControl (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -715,7 +715,7 @@ protected boolean isCellDisplayable(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html index 5c5129cb9..cfaef0ebd 100644 --- a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html @@ -2,12 +2,12 @@ - + -mxGraphComponent.mxMouseRedirector (mxGraph 1.10.1.5 API Specification) +mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphComponent.mxMouseRedirector (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -388,7 +388,7 @@ public void mouseMoved(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html index ce25dbdd4..f1cea4348 100644 --- a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html +++ b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html @@ -2,12 +2,12 @@ - + -mxGraphOutline.MouseTracker (mxGraph 1.10.1.5 API Specification) +mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline.MouseTracker (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline.MouseTracker (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphOutline.MouseTracker (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -412,7 +412,7 @@ public void mouseExited(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.html b/java/docs/com/mxgraph/swing/mxGraphOutline.html index 108fb1064..69489afd6 100644 --- a/java/docs/com/mxgraph/swing/mxGraphOutline.html +++ b/java/docs/com/mxgraph/swing/mxGraphOutline.html @@ -2,12 +2,12 @@ - + -mxGraphOutline (mxGraph 1.10.1.5 API Specification) +mxGraphOutline (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphOutline (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphOutline (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphOutline (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1256,7 +1256,7 @@ public boolean updateScaleAndTranslate() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/package-frame.html b/java/docs/com/mxgraph/swing/package-frame.html index ea204e4ef..b6a953307 100644 --- a/java/docs/com/mxgraph/swing/package-frame.html +++ b/java/docs/com/mxgraph/swing/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/package-summary.html b/java/docs/com/mxgraph/swing/package-summary.html index f837f8d81..cad2a9ee7 100644 --- a/java/docs/com/mxgraph/swing/package-summary.html +++ b/java/docs/com/mxgraph/swing/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -148,7 +148,7 @@ This package contains the main component for JFC/Swing, namely the graph -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/package-tree.html b/java/docs/com/mxgraph/swing/package-tree.html index a4cdf0f98..0789e5ce5 100644 --- a/java/docs/com/mxgraph/swing/package-tree.html +++ b/java/docs/com/mxgraph/swing/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -132,7 +132,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/package-use.html b/java/docs/com/mxgraph/swing/package-use.html index cbdd8765c..1516824e8 100644 --- a/java/docs/com/mxgraph/swing/package-use.html +++ b/java/docs/com/mxgraph/swing/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.swing (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -213,7 +213,7 @@ Classes in
com.mxgraph -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html index b46c9804c..16d13acfe 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html index aa81ae171..7582632b5 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxCellOverlay -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html index 8830862c2..3d69b8fc7 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DeleteAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html index 3233d1747..04f903fb7 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.DrillAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html index b3277c8ec..aecf0cb8f 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.EditAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html index f927ef84d..505f0db96 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.FoldAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html index 0a6a05aaf..720e33c25 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.GroupAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html index bc5e9dd42..a791ad732 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.1. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.LayerAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html index 2826e2274..ddbe78c3b 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGr function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html index 4b4216976..293594099 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.1 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.SelectAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html index d5dbcef31..1906e5a76 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UngroupAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html index cdcfdbb5e..cd7353f77 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxG function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html index bdb0a00e9..0ff4a4952 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions.ZoomAction -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html index 99c8a1fb7..2d6cfd873 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxGraphActions -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html index 512c8dd1c..56dd721a5 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.1.5 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -199,7 +199,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html index c29f3fc1c..61bdde59e 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -280,7 +280,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html index f346b9429..d567cbc2d 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxMorphing -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html index baf69622d..16560b802 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html index f9e55d84b..34cc79ee6 100644 --- a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html +++ b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.util.mxSwingConstants -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxAnimation.html b/java/docs/com/mxgraph/swing/util/mxAnimation.html index 8caffc2a0..7ec71231d 100644 --- a/java/docs/com/mxgraph/swing/util/mxAnimation.html +++ b/java/docs/com/mxgraph/swing/util/mxAnimation.html @@ -2,12 +2,12 @@ - + -mxAnimation (mxGraph 1.10.1.5 API Specification) +mxAnimation (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxAnimation (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxAnimation (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxAnimation (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -442,7 +442,7 @@ public void stopAnimation() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html index b2bd6b689..1c1510401 100644 --- a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html @@ -2,12 +2,12 @@ - + -mxCellOverlay (mxGraph 1.10.1.5 API Specification) +mxCellOverlay (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellOverlay (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellOverlay (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellOverlay (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -533,7 +533,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html index 2f661010f..dc0c07e60 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.DeleteAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.DeleteAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DeleteAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DeleteAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.DeleteAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html index b98718172..72c981023 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.DrillAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.DrillAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.DrillAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.DrillAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.DrillAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html index 7fb1a217a..c140d04e2 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.EditAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.EditAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.EditAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.EditAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.EditAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html index 52eae09a4..a8f50061e 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.FoldAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.FoldAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.FoldAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.FoldAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.FoldAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html index 651dafaf2..0c54a7276 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.GroupAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.GroupAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.GroupAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.GroupAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.GroupAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -277,7 +277,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html index 45da12515..b923606a4 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.LayerAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.LayerAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.LayerAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.LayerAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.LayerAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html index a57856a58..4609a6c0c 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.RemoveFromParentAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.RemoveFromParentAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html index ce2d2cbce..373508594 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.SelectAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.SelectAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.SelectAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.SelectAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.SelectAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html index 874314cd3..c08dd92a3 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.UngroupAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.UngroupAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UngroupAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UngroupAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.UngroupAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html index 8bf9b8230..1c22c2619 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -277,7 +277,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html index b75e876e4..da7357902 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html @@ -2,12 +2,12 @@ - + -mxGraphActions.ZoomAction (mxGraph 1.10.1.5 API Specification) +mxGraphActions.ZoomAction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions.ZoomAction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions.ZoomAction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions.ZoomAction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -258,7 +258,7 @@ public void actionPerformed(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.html index 0a57ca79b..c5e6b3b6a 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.html @@ -2,12 +2,12 @@ - + -mxGraphActions (mxGraph 1.10.1.5 API Specification) +mxGraphActions (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphActions (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphActions (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphActions (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -789,7 +789,7 @@ public static final
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html index 2d05651a4..5d2b3991b 100644 --- a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html +++ b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html @@ -2,12 +2,12 @@ - + -mxGraphTransferable (mxGraph 1.10.1.5 API Specification) +mxGraphTransferable (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphTransferable (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphTransferable (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphTransferable (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -780,7 +780,7 @@ protected boolean isStringFlavor(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html index 716dd7080..19167e677 100644 --- a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html +++ b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html @@ -2,12 +2,12 @@ - + -mxICellOverlay (mxGraph 1.10.1.5 API Specification) +mxICellOverlay (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxICellOverlay (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellOverlay (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxICellOverlay (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -168,7 +168,7 @@ getBounds -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxMorphing.html b/java/docs/com/mxgraph/swing/util/mxMorphing.html index 2dfd8932a..60ad86727 100644 --- a/java/docs/com/mxgraph/swing/util/mxMorphing.html +++ b/java/docs/com/mxgraph/swing/util/mxMorphing.html @@ -2,12 +2,12 @@ - + -mxMorphing (mxGraph 1.10.1.5 API Specification) +mxMorphing (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMorphing (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMorphing (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMorphing (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -743,7 +743,7 @@ public void paint(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html index 847efd0bd..2e8ed6873 100644 --- a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html +++ b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html @@ -2,12 +2,12 @@ - + -mxMouseAdapter (mxGraph 1.10.1.5 API Specification) +mxMouseAdapter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMouseAdapter (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMouseAdapter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMouseAdapter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -352,7 +352,7 @@ public void mouseExited(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html index 1cd80bf38..be6f99e07 100644 --- a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html +++ b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html @@ -2,12 +2,12 @@ - + -mxSwingConstants (mxGraph 1.10.1.5 API Specification) +mxSwingConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSwingConstants (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwingConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSwingConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -547,7 +547,7 @@ public mxSwingConstants() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/package-frame.html b/java/docs/com/mxgraph/swing/util/package-frame.html index 1cddf4d7f..0018c0614 100644 --- a/java/docs/com/mxgraph/swing/util/package-frame.html +++ b/java/docs/com/mxgraph/swing/util/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/util/package-summary.html b/java/docs/com/mxgraph/swing/util/package-summary.html index 8b506b3ec..978d51600 100644 --- a/java/docs/com/mxgraph/swing/util/package-summary.html +++ b/java/docs/com/mxgraph/swing/util/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -221,7 +221,7 @@ This package contains all utility classes that require JFC/Swing, namely for -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/package-tree.html b/java/docs/com/mxgraph/swing/util/package-tree.html index e77e72a4a..a4e10ccd6 100644 --- a/java/docs/com/mxgraph/swing/util/package-tree.html +++ b/java/docs/com/mxgraph/swing/util/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -141,7 +141,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/util/package-use.html b/java/docs/com/mxgraph/swing/util/package-use.html index b74d99e14..0effacf73 100644 --- a/java/docs/com/mxgraph/swing/util/package-use.html +++ b/java/docs/com/mxgraph/swing/util/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -188,7 +188,7 @@ Classes in
com -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html index 6b53b339e..e7b63603c 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.swing.view.mxCellEditor -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html index 294b952bd..9fd56d17a 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -218,7 +218,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html index 4cde5077f..b3b38e393 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.1.5 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -217,7 +217,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html index fd58c0398..16c2aee9e 100644 --- a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html +++ b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.1.5 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -171,7 +171,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/mxCellEditor.html index 66b17a5b3..a820fcf1f 100644 --- a/java/docs/com/mxgraph/swing/view/mxCellEditor.html +++ b/java/docs/com/mxgraph/swing/view/mxCellEditor.html @@ -2,12 +2,12 @@ - + -mxCellEditor (mxGraph 1.10.1.5 API Specification) +mxCellEditor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellEditor (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellEditor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellEditor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1074,7 +1074,7 @@ public void setMinimumHeight(int minimumHeight) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html index 203ae7bb6..4654182a8 100644 --- a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html +++ b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html @@ -2,12 +2,12 @@ - + -mxCellStatePreview (mxGraph 1.10.1.5 API Specification) +mxCellStatePreview (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellStatePreview (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellStatePreview (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellStatePreview (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -743,7 +743,7 @@ protected void paintPreviewState(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/mxICellEditor.html index 5e85efbaf..dbf5829a5 100644 --- a/java/docs/com/mxgraph/swing/view/mxICellEditor.html +++ b/java/docs/com/mxgraph/swing/view/mxICellEditor.html @@ -2,12 +2,12 @@ - + -mxICellEditor (mxGraph 1.10.1.5 API Specification) +mxICellEditor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxICellEditor (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxICellEditor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxICellEditor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -214,7 +214,7 @@ void stopEditing(boolean cancel) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html index dcee515d8..df6a96cc2 100644 --- a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html +++ b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html @@ -2,12 +2,12 @@ - + -mxInteractiveCanvas (mxGraph 1.10.1.5 API Specification) +mxInteractiveCanvas (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxInteractiveCanvas (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxInteractiveCanvas (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxInteractiveCanvas (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -450,7 +450,7 @@ public boolean hitSwimlaneContent(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/package-frame.html b/java/docs/com/mxgraph/swing/view/package-frame.html index ee55faf24..c72ea9bc7 100644 --- a/java/docs/com/mxgraph/swing/view/package-frame.html +++ b/java/docs/com/mxgraph/swing/view/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/swing/view/package-summary.html b/java/docs/com/mxgraph/swing/view/package-summary.html index e4b396018..3c0358cc3 100644 --- a/java/docs/com/mxgraph/swing/view/package-summary.html +++ b/java/docs/com/mxgraph/swing/view/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -163,7 +163,7 @@ This package contains all classes required for interaction, namely the -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/package-tree.html b/java/docs/com/mxgraph/swing/view/package-tree.html index 9c3e88633..abb745554 100644 --- a/java/docs/com/mxgraph/swing/view/package-tree.html +++ b/java/docs/com/mxgraph/swing/view/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -129,7 +129,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/swing/view/package-use.html b/java/docs/com/mxgraph/swing/view/package-use.html index aae73db46..2428ac561 100644 --- a/java/docs/com/mxgraph/swing/view/package-use.html +++ b/java/docs/com/mxgraph/swing/view/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -203,7 +203,7 @@ Classes in
com -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxBase64.html b/java/docs/com/mxgraph/util/class-use/mxBase64.html index ba0769f6a..b6da6dc9a 100644 --- a/java/docs/com/mxgraph/util/class-use/mxBase64.html +++ b/java/docs/com/mxgraph/util/class-use/mxBase64.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxBase64 -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html index 0a7e1f0ac..833ff8ff2 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -152,7 +152,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html index 1c01e3f25..e9df335cf 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxCellRenderer -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxConstants.html b/java/docs/com/mxgraph/util/class-use/mxConstants.html index d25189014..f1caf5a81 100644 --- a/java/docs/com/mxgraph/util/class-use/mxConstants.html +++ b/java/docs/com/mxgraph/util/class-use/mxConstants.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxConstants -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxCurve.html b/java/docs/com/mxgraph/util/class-use/mxCurve.html index 9b6b57662..b38b21799 100644 --- a/java/docs/com/mxgraph/util/class-use/mxCurve.html +++ b/java/docs/com/mxgraph/util/class-use/mxCurve.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -228,7 +228,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html index 1ccf55e21..f5e2ba27d 100644 --- a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxDomUtils -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxEvent.html b/java/docs/com/mxgraph/util/class-use/mxEvent.html index c5152ecf4..b3922b320 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEvent.html +++ b/java/docs/com/mxgraph/util/class-use/mxEvent.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxEvent -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventObject.html b/java/docs/com/mxgraph/util/class-use/mxEventObject.html index 5eaae5a29..3fb30d7f5 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventObject.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventObject.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -166,7 +166,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.html index 3bba97eef..84321dd72 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -426,7 +426,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html index 5eac1fcef..3529db1d5 100644 --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10. function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -518,7 +518,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxImage.html b/java/docs/com/mxgraph/util/class-use/mxImage.html index b53d7f41b..fb3bd6ad4 100644 --- a/java/docs/com/mxgraph/util/class-use/mxImage.html +++ b/java/docs/com/mxgraph/util/class-use/mxImage.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxImage -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html index 81aa931e0..0d2367157 100644 --- a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -202,7 +202,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html index 527db23df..b9368a34d 100644 --- a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxLine.html b/java/docs/com/mxgraph/util/class-use/mxLine.html index 1cf29b851..f11561fdd 100644 --- a/java/docs/com/mxgraph/util/class-use/mxLine.html +++ b/java/docs/com/mxgraph/util/class-use/mxLine.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -227,7 +227,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxPoint.html b/java/docs/com/mxgraph/util/class-use/mxPoint.html index adaf87b2c..99f332a9b 100644 --- a/java/docs/com/mxgraph/util/class-use/mxPoint.html +++ b/java/docs/com/mxgraph/util/class-use/mxPoint.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1945,7 +1945,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxRectangle.html b/java/docs/com/mxgraph/util/class-use/mxRectangle.html index 649934abd..3caa86a20 100644 --- a/java/docs/com/mxgraph/util/class-use/mxRectangle.html +++ b/java/docs/com/mxgraph/util/class-use/mxRectangle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1735,7 +1735,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxResources.html b/java/docs/com/mxgraph/util/class-use/mxResources.html index bc75aa8f0..e3e169fc1 100644 --- a/java/docs/com/mxgraph/util/class-use/mxResources.html +++ b/java/docs/com/mxgraph/util/class-use/mxResources.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxResources -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline.html b/java/docs/com/mxgraph/util/class-use/mxSpline.html index c19f84624..fd3f1be5b 100644 --- a/java/docs/com/mxgraph/util/class-use/mxSpline.html +++ b/java/docs/com/mxgraph/util/class-use/mxSpline.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxSpline -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html index 8c225cd7d..c46ce929a 100644 --- a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -155,7 +155,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html index 235d53c59..f2977e05e 100644 --- a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxStyleUtils -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html index cb77793ca..64a894ffd 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.1.5 API Specification function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUndoManager -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html index 98c5ace0c..a5cec8397 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -269,7 +269,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html index a69fbe835..bd89e7dc8 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -389,7 +389,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxUtils.html b/java/docs/com/mxgraph/util/class-use/mxUtils.html index 36a318199..2220efb61 100644 --- a/java/docs/com/mxgraph/util/class-use/mxUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxUtils -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html index e79d6feb8..bcf3e9df0 100644 --- a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html +++ b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.mxXmlUtils -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxBase64.html b/java/docs/com/mxgraph/util/mxBase64.html index d8fc23c98..fcc1f4cd2 100644 --- a/java/docs/com/mxgraph/util/mxBase64.html +++ b/java/docs/com/mxgraph/util/mxBase64.html @@ -2,12 +2,12 @@ - + -mxBase64 (mxGraph 1.10.1.5 API Specification) +mxBase64 (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxBase64 (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxBase64 (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxBase64 (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -489,7 +489,7 @@ public static final byte[] decodeFast(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html index 888d094e8..97419a9c4 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html @@ -2,12 +2,12 @@ - + -mxCellRenderer.CanvasFactory (mxGraph 1.10.1.5 API Specification) +mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer.CanvasFactory (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -220,7 +220,7 @@ public abstract
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.html b/java/docs/com/mxgraph/util/mxCellRenderer.html index 5ef637f27..1e043e2db 100644 --- a/java/docs/com/mxgraph/util/mxCellRenderer.html +++ b/java/docs/com/mxgraph/util/mxCellRenderer.html @@ -2,12 +2,12 @@ - + -mxCellRenderer (mxGraph 1.10.1.5 API Specification) +mxCellRenderer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellRenderer (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellRenderer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellRenderer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -349,7 +349,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxConstants.html b/java/docs/com/mxgraph/util/mxConstants.html index 19ffe9e6e..7244f96e3 100644 --- a/java/docs/com/mxgraph/util/mxConstants.html +++ b/java/docs/com/mxgraph/util/mxConstants.html @@ -2,12 +2,12 @@ - + -mxConstants (mxGraph 1.10.1.5 API Specification) +mxConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxConstants (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -4106,7 +4106,7 @@ public mxConstants() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxCurve.html b/java/docs/com/mxgraph/util/mxCurve.html index 610054060..e6fb8f1e6 100644 --- a/java/docs/com/mxgraph/util/mxCurve.html +++ b/java/docs/com/mxgraph/util/mxCurve.html @@ -2,12 +2,12 @@ - + -mxCurve (mxGraph 1.10.1.5 API Specification) +mxCurve (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCurve (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCurve (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCurve (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1104,7 +1104,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxDomUtils.html b/java/docs/com/mxgraph/util/mxDomUtils.html index 4cde29e43..be79b1582 100644 --- a/java/docs/com/mxgraph/util/mxDomUtils.html +++ b/java/docs/com/mxgraph/util/mxDomUtils.html @@ -2,12 +2,12 @@ - + -mxDomUtils (mxGraph 1.10.1.5 API Specification) +mxDomUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxDomUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxDomUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxDomUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -281,7 +281,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxEvent.html b/java/docs/com/mxgraph/util/mxEvent.html index 9e7f1efb0..282578740 100644 --- a/java/docs/com/mxgraph/util/mxEvent.html +++ b/java/docs/com/mxgraph/util/mxEvent.html @@ -2,12 +2,12 @@ - + -mxEvent (mxGraph 1.10.1.5 API Specification) +mxEvent (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEvent (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEvent (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEvent (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1273,7 +1273,7 @@ public mxEvent() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxEventObject.html b/java/docs/com/mxgraph/util/mxEventObject.html index 862be045d..d140983e2 100644 --- a/java/docs/com/mxgraph/util/mxEventObject.html +++ b/java/docs/com/mxgraph/util/mxEventObject.html @@ -2,12 +2,12 @@ - + -mxEventObject (mxGraph 1.10.1.5 API Specification) +mxEventObject (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEventObject (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventObject (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEventObject (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -397,7 +397,7 @@ public void consume() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxEventSource.html b/java/docs/com/mxgraph/util/mxEventSource.html index 87d754a6a..50fdc1324 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.html +++ b/java/docs/com/mxgraph/util/mxEventSource.html @@ -2,12 +2,12 @@ - + -mxEventSource (mxGraph 1.10.1.5 API Specification) +mxEventSource (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEventSource (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -513,7 +513,7 @@ public void fireEvent(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html index 2563eafdc..31be4b61c 100644 --- a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html +++ b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html @@ -2,12 +2,12 @@ - + -mxEventSource.mxIEventListener (mxGraph 1.10.1.5 API Specification) +mxEventSource.mxIEventListener (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEventSource.mxIEventListener (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEventSource.mxIEventListener (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEventSource.mxIEventListener (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -176,7 +176,7 @@ void invoke(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxImage.html b/java/docs/com/mxgraph/util/mxImage.html index f77b2fd07..f2a4b9d3a 100644 --- a/java/docs/com/mxgraph/util/mxImage.html +++ b/java/docs/com/mxgraph/util/mxImage.html @@ -2,12 +2,12 @@ - + -mxImage (mxGraph 1.10.1.5 API Specification) +mxImage (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxImage (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImage (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxImage (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -420,7 +420,7 @@ public void setHeight(int height) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxImageBundle.html b/java/docs/com/mxgraph/util/mxImageBundle.html index f0f0bba37..9a07c3f87 100644 --- a/java/docs/com/mxgraph/util/mxImageBundle.html +++ b/java/docs/com/mxgraph/util/mxImageBundle.html @@ -2,12 +2,12 @@ - + -mxImageBundle (mxGraph 1.10.1.5 API Specification) +mxImageBundle (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxImageBundle (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxImageBundle (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxImageBundle (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -331,7 +331,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxLightweightLabel.html b/java/docs/com/mxgraph/util/mxLightweightLabel.html index 3e8587bc3..bf9944227 100644 --- a/java/docs/com/mxgraph/util/mxLightweightLabel.html +++ b/java/docs/com/mxgraph/util/mxLightweightLabel.html @@ -2,12 +2,12 @@ - + -mxLightweightLabel (mxGraph 1.10.1.5 API Specification) +mxLightweightLabel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxLightweightLabel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLightweightLabel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxLightweightLabel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -742,7 +742,7 @@ public void firePropertyChange(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxLine.html b/java/docs/com/mxgraph/util/mxLine.html index f3cf8f26e..658189334 100644 --- a/java/docs/com/mxgraph/util/mxLine.html +++ b/java/docs/com/mxgraph/util/mxLine.html @@ -2,12 +2,12 @@ - + -mxLine (mxGraph 1.10.1.5 API Specification) +mxLine (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxLine (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLine (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxLine (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -396,7 +396,7 @@ public double ptSegDistSq(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxPoint.html b/java/docs/com/mxgraph/util/mxPoint.html index 53202beb4..4f747b2cf 100644 --- a/java/docs/com/mxgraph/util/mxPoint.html +++ b/java/docs/com/mxgraph/util/mxPoint.html @@ -2,12 +2,12 @@ - + -mxPoint (mxGraph 1.10.1.5 API Specification) +mxPoint (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPoint (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPoint (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPoint (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -518,7 +518,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxRectangle.html b/java/docs/com/mxgraph/util/mxRectangle.html index 5fc9d5aef..55a03d5b3 100644 --- a/java/docs/com/mxgraph/util/mxRectangle.html +++ b/java/docs/com/mxgraph/util/mxRectangle.html @@ -2,12 +2,12 @@ - + -mxRectangle (mxGraph 1.10.1.5 API Specification) +mxRectangle (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxRectangle (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxRectangle (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxRectangle (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -699,7 +699,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxResources.html b/java/docs/com/mxgraph/util/mxResources.html index ce0b11874..9350ee01f 100644 --- a/java/docs/com/mxgraph/util/mxResources.html +++ b/java/docs/com/mxgraph/util/mxResources.html @@ -2,12 +2,12 @@ - + -mxResources (mxGraph 1.10.1.5 API Specification) +mxResources (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxResources (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxResources (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxResources (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -432,7 +432,7 @@ protected static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxSpline.html b/java/docs/com/mxgraph/util/mxSpline.html index 2853aa0c9..485d6dd5a 100644 --- a/java/docs/com/mxgraph/util/mxSpline.html +++ b/java/docs/com/mxgraph/util/mxSpline.html @@ -2,12 +2,12 @@ - + -mxSpline (mxGraph 1.10.1.5 API Specification) +mxSpline (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSpline (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSpline (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -371,7 +371,7 @@ public double getLength() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxSpline1D.html b/java/docs/com/mxgraph/util/mxSpline1D.html index 3c38e9cf1..248e06381 100644 --- a/java/docs/com/mxgraph/util/mxSpline1D.html +++ b/java/docs/com/mxgraph/util/mxSpline1D.html @@ -2,12 +2,12 @@ - + -mxSpline1D (mxGraph 1.10.1.5 API Specification) +mxSpline1D (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSpline1D (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpline1D (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSpline1D (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -446,7 +446,7 @@ public void solve(double[][] A, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxStyleUtils.html b/java/docs/com/mxgraph/util/mxStyleUtils.html index b64fc31c8..27db090fd 100644 --- a/java/docs/com/mxgraph/util/mxStyleUtils.html +++ b/java/docs/com/mxgraph/util/mxStyleUtils.html @@ -2,12 +2,12 @@ - + -mxStyleUtils (mxGraph 1.10.1.5 API Specification) +mxStyleUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStyleUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStyleUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -468,7 +468,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxUndoManager.html b/java/docs/com/mxgraph/util/mxUndoManager.html index 389aaed0b..7c97016fa 100644 --- a/java/docs/com/mxgraph/util/mxUndoManager.html +++ b/java/docs/com/mxgraph/util/mxUndoManager.html @@ -2,12 +2,12 @@ - + -mxUndoManager (mxGraph 1.10.1.5 API Specification) +mxUndoManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxUndoManager (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxUndoManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -511,7 +511,7 @@ protected void trim() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.html b/java/docs/com/mxgraph/util/mxUndoableEdit.html index 9830ad437..c179fd5e7 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit (mxGraph 1.10.1.5 API Specification) +mxUndoableEdit (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxUndoableEdit (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -578,7 +578,7 @@ public void redo() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html index f6a856ee9..8d43ef4da 100644 --- a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html @@ -2,12 +2,12 @@ - + -mxUndoableEdit.mxUndoableChange (mxGraph 1.10.1.5 API Specification) +mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxUndoableEdit.mxUndoableChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -177,7 +177,7 @@ void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxUtils.html b/java/docs/com/mxgraph/util/mxUtils.html index fbb2098e8..4b4a22449 100644 --- a/java/docs/com/mxgraph/util/mxUtils.html +++ b/java/docs/com/mxgraph/util/mxUtils.html @@ -2,12 +2,12 @@ - + -mxUtils (mxGraph 1.10.1.5 API Specification) +mxUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -872,6 +872,14 @@ Contains various helper methods for use with mxGraph. static 
String readFile(String filename) +
+          Reads the given filename into a string. + + + +static String +readInputStream(InputStream stream) +
          Reads the given filename into a string. @@ -2015,6 +2023,23 @@ public static

+readInputStream

+
+public static String readInputStream(InputStream stream)
+                              throws IOException
+
+
Reads the given filename into a string. +

+

+
Parameters:
filename - Name of the file to be read. +
Returns:
Returns a string representing the file contents. +
Throws: +
IOException
+
+
+
+

writeFile

@@ -2471,7 +2496,7 @@ public static 
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/mxXmlUtils.html b/java/docs/com/mxgraph/util/mxXmlUtils.html index 01f6f8685..f8a08b1eb 100644 --- a/java/docs/com/mxgraph/util/mxXmlUtils.html +++ b/java/docs/com/mxgraph/util/mxXmlUtils.html @@ -2,12 +2,12 @@ - + -mxXmlUtils (mxGraph 1.10.1.5 API Specification) +mxXmlUtils (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxXmlUtils (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxXmlUtils (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxXmlUtils (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -240,7 +240,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/package-frame.html b/java/docs/com/mxgraph/util/package-frame.html index 0323e6528..a1c50a56a 100644 --- a/java/docs/com/mxgraph/util/package-frame.html +++ b/java/docs/com/mxgraph/util/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/util/package-summary.html b/java/docs/com/mxgraph/util/package-summary.html index 0b9e0070a..b9aa7bc22 100644 --- a/java/docs/com/mxgraph/util/package-summary.html +++ b/java/docs/com/mxgraph/util/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.util (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -254,7 +254,7 @@ This package provides utility classes such as mxConstants, mxUtils, mxPoint -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/package-tree.html b/java/docs/com/mxgraph/util/package-tree.html index 226db54c9..c0b8d87f8 100644 --- a/java/docs/com/mxgraph/util/package-tree.html +++ b/java/docs/com/mxgraph/util/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -140,7 +140,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/package-use.html b/java/docs/com/mxgraph/util/package-use.html index a528a6c5a..be815fd8e 100644 --- a/java/docs/com/mxgraph/util/package-use.html +++ b/java/docs/com/mxgraph/util/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.util (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -596,7 +596,7 @@ Classes in
com.mxgraph. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html index ad383ffc1..2c10da483 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.1.5 API S function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Gray -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html index 30536b591..b73a66689 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.Palette -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html index a8ccc6f8a..ef65ef07a 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.1.5 API Sp function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngEncodeParam.RGB -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html index 5e0dacd95..bc1ee2fe5 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -219,7 +219,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html index 976e8ab78..0dfaf75b0 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngImageEncoder -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html index 6a72ec942..2767b19fd 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html index 4195624f0..ea0764a84 100644 --- a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.png.mxPngTextDecoder -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html index a230551d7..5f9a0a3ca 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.Gray (mxGraph 1.10.1.5 API Specification) +mxPngEncodeParam.Gray (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Gray (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Gray (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngEncodeParam.Gray (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -542,7 +542,7 @@ public boolean isBitDepthSet()
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html index 940c9fc56..cfec08ede 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.Palette (mxGraph 1.10.1.5 API Specification) +mxPngEncodeParam.Palette (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.Palette (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.Palette (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngEncodeParam.Palette (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -517,7 +517,7 @@ public byte[] getPaletteTransparency() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html index a191b178a..f591cbac2 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam.RGB (mxGraph 1.10.1.5 API Specification) +mxPngEncodeParam.RGB (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam.RGB (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam.RGB (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngEncodeParam.RGB (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -420,7 +420,7 @@ public int[] getTransparentRGB() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html index 9fb26df4c..4335b289c 100644 --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html @@ -2,12 +2,12 @@ - + -mxPngEncodeParam (mxGraph 1.10.1.5 API Specification) +mxPngEncodeParam (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngEncodeParam (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngEncodeParam (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngEncodeParam (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -2047,7 +2047,7 @@ public int filterRow(byte[] currRow, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html index 4362830be..68b33c2a5 100644 --- a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html +++ b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html @@ -2,12 +2,12 @@ - + -mxPngImageEncoder (mxGraph 1.10.1.5 API Specification) +mxPngImageEncoder (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngImageEncoder (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngImageEncoder (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngImageEncoder (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -326,7 +326,7 @@ public void encode(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html index 5d860e8b2..db5645862 100644 --- a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html +++ b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html @@ -2,12 +2,12 @@ - + -mxPngSuggestedPaletteEntry (mxGraph 1.10.1.5 API Specification) +mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngSuggestedPaletteEntry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -353,7 +353,7 @@ public mxPngSuggestedPaletteEntry() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html index ec92e7db2..e785fe210 100644 --- a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html +++ b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html @@ -2,12 +2,12 @@ - + -mxPngTextDecoder (mxGraph 1.10.1.5 API Specification) +mxPngTextDecoder (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPngTextDecoder (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPngTextDecoder (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPngTextDecoder (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -271,7 +271,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/package-frame.html b/java/docs/com/mxgraph/util/png/package-frame.html index 09a66f432..56e471180 100644 --- a/java/docs/com/mxgraph/util/png/package-frame.html +++ b/java/docs/com/mxgraph/util/png/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/util/png/package-summary.html b/java/docs/com/mxgraph/util/png/package-summary.html index abd37a161..a3afdc17e 100644 --- a/java/docs/com/mxgraph/util/png/package-summary.html +++ b/java/docs/com/mxgraph/util/png/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -147,7 +147,7 @@ Package com.mxgraph.util.png -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/package-tree.html b/java/docs/com/mxgraph/util/png/package-tree.html index 28ec051f2..b5704f487 100644 --- a/java/docs/com/mxgraph/util/png/package-tree.html +++ b/java/docs/com/mxgraph/util/png/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -121,7 +121,7 @@ Class Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/png/package-use.html b/java/docs/com/mxgraph/util/png/package-use.html index 71b1b7127..f8d59e796 100644 --- a/java/docs/com/mxgraph/util/png/package-use.html +++ b/java/docs/com/mxgraph/util/png/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -142,7 +142,7 @@ Classes in
com.m -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html index 975ac6892..934f844d3 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html @@ -2,12 +2,12 @@ - + -AWTPathProducer (mxGraph 1.10.1.5 API Specification) +AWTPathProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ AWTPathProducer (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPathProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="AWTPathProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1098,7 +1098,7 @@ public void arcAbs(float rx, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html index 11c25af39..2e759cd1e 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html @@ -2,12 +2,12 @@ - + -AWTPolygonProducer (mxGraph 1.10.1.5 API Specification) +AWTPolygonProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ AWTPolygonProducer (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolygonProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="AWTPolygonProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -281,7 +281,7 @@ public void endPoints() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html index c800d3400..0ad8bb8ba 100644 --- a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html +++ b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html @@ -2,12 +2,12 @@ - + -AWTPolylineProducer (mxGraph 1.10.1.5 API Specification) +AWTPolylineProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ AWTPolylineProducer (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AWTPolylineProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="AWTPolylineProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -469,7 +469,7 @@ public void endPoints() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/AbstractParser.html b/java/docs/com/mxgraph/util/svg/AbstractParser.html index 625479711..d9e018acc 100644 --- a/java/docs/com/mxgraph/util/svg/AbstractParser.html +++ b/java/docs/com/mxgraph/util/svg/AbstractParser.html @@ -2,12 +2,12 @@ - + -AbstractParser (mxGraph 1.10.1.5 API Specification) +AbstractParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ AbstractParser (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="AbstractParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="AbstractParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -601,7 +601,7 @@ protected void skipCommaSpaces() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/CSSConstants.html b/java/docs/com/mxgraph/util/svg/CSSConstants.html index fa9f5a30c..a0bf4448e 100644 --- a/java/docs/com/mxgraph/util/svg/CSSConstants.html +++ b/java/docs/com/mxgraph/util/svg/CSSConstants.html @@ -2,12 +2,12 @@ - + -CSSConstants (mxGraph 1.10.1.5 API Specification) +CSSConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ CSSConstants (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="CSSConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="CSSConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -204,7 +204,7 @@ static final
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html index d1bf7467f..c661ce7d0 100644 --- a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html @@ -2,12 +2,12 @@ - + -DefaultErrorHandler (mxGraph 1.10.1.5 API Specification) +DefaultErrorHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ DefaultErrorHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DefaultErrorHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="DefaultErrorHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -227,7 +227,7 @@ public void error(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/ErrorHandler.html index c4eefbb50..5d4e81aac 100644 --- a/java/docs/com/mxgraph/util/svg/ErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/ErrorHandler.html @@ -2,12 +2,12 @@ - + -ErrorHandler (mxGraph 1.10.1.5 API Specification) +ErrorHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ ErrorHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ErrorHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="ErrorHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -178,7 +178,7 @@ void error(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html index 60e184e25..1e0d67f7d 100644 --- a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html +++ b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html @@ -2,12 +2,12 @@ - + -ExtendedGeneralPath (mxGraph 1.10.1.5 API Specification) +ExtendedGeneralPath (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ ExtendedGeneralPath (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedGeneralPath (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="ExtendedGeneralPath (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1091,7 +1091,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html index 72e6cf7ff..0eca82c3b 100644 --- a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html +++ b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html @@ -2,12 +2,12 @@ - + -ExtendedPathIterator (mxGraph 1.10.1.5 API Specification) +ExtendedPathIterator (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ ExtendedPathIterator (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ExtendedPathIterator (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="ExtendedPathIterator (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -494,7 +494,7 @@ void next() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/NormalizingReader.html index 8f25716b1..742c74d86 100644 --- a/java/docs/com/mxgraph/util/svg/NormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/NormalizingReader.html @@ -2,12 +2,12 @@ - + -NormalizingReader (mxGraph 1.10.1.5 API Specification) +NormalizingReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ NormalizingReader (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NormalizingReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="NormalizingReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -307,7 +307,7 @@ public abstract int getColumn() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/NumberParser.html b/java/docs/com/mxgraph/util/svg/NumberParser.html index bcb7714db..9f0883a5e 100644 --- a/java/docs/com/mxgraph/util/svg/NumberParser.html +++ b/java/docs/com/mxgraph/util/svg/NumberParser.html @@ -2,12 +2,12 @@ - + -NumberParser (mxGraph 1.10.1.5 API Specification) +NumberParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ NumberParser (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NumberParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="NumberParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -279,7 +279,7 @@ public static float buildFloat(int mant, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/ParseException.html b/java/docs/com/mxgraph/util/svg/ParseException.html index a2f0a075e..9d0715ae5 100644 --- a/java/docs/com/mxgraph/util/svg/ParseException.html +++ b/java/docs/com/mxgraph/util/svg/ParseException.html @@ -2,12 +2,12 @@ - + -ParseException (mxGraph 1.10.1.5 API Specification) +ParseException (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ ParseException (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ParseException (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="ParseException (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -437,7 +437,7 @@ public int getColumnNumber() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/Parser.html b/java/docs/com/mxgraph/util/svg/Parser.html index 450561649..bb84e6b19 100644 --- a/java/docs/com/mxgraph/util/svg/Parser.html +++ b/java/docs/com/mxgraph/util/svg/Parser.html @@ -2,12 +2,12 @@ - + -Parser (mxGraph 1.10.1.5 API Specification) +Parser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Parser (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Parser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Parser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -206,7 +206,7 @@ void setErrorHandler(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/PathHandler.html b/java/docs/com/mxgraph/util/svg/PathHandler.html index ed59dcae7..a1a6c8b78 100644 --- a/java/docs/com/mxgraph/util/svg/PathHandler.html +++ b/java/docs/com/mxgraph/util/svg/PathHandler.html @@ -2,12 +2,12 @@ - + -PathHandler (mxGraph 1.10.1.5 API Specification) +PathHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ PathHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="PathHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -776,7 +776,7 @@ void arcAbs(float rx, -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/PathParser.html b/java/docs/com/mxgraph/util/svg/PathParser.html index 5384f9007..13ccec57e 100644 --- a/java/docs/com/mxgraph/util/svg/PathParser.html +++ b/java/docs/com/mxgraph/util/svg/PathParser.html @@ -2,12 +2,12 @@ - + -PathParser (mxGraph 1.10.1.5 API Specification) +PathParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ PathParser (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PathParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="PathParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -941,7 +941,7 @@ protected boolean skipCommaSpaces2() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/PointsHandler.html b/java/docs/com/mxgraph/util/svg/PointsHandler.html index 089d92802..9a2b29315 100644 --- a/java/docs/com/mxgraph/util/svg/PointsHandler.html +++ b/java/docs/com/mxgraph/util/svg/PointsHandler.html @@ -2,12 +2,12 @@ - + -PointsHandler (mxGraph 1.10.1.5 API Specification) +PointsHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ PointsHandler (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="PointsHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -232,7 +232,7 @@ void endPoints() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/PointsParser.html b/java/docs/com/mxgraph/util/svg/PointsParser.html index 2715c4204..af6e90cd1 100644 --- a/java/docs/com/mxgraph/util/svg/PointsParser.html +++ b/java/docs/com/mxgraph/util/svg/PointsParser.html @@ -2,12 +2,12 @@ - + -PointsParser (mxGraph 1.10.1.5 API Specification) +PointsParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ PointsParser (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="PointsParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="PointsParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -367,7 +367,7 @@ protected void doParse() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/ShapeProducer.html index de5a181cf..be857b82f 100644 --- a/java/docs/com/mxgraph/util/svg/ShapeProducer.html +++ b/java/docs/com/mxgraph/util/svg/ShapeProducer.html @@ -2,12 +2,12 @@ - + -ShapeProducer (mxGraph 1.10.1.5 API Specification) +ShapeProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ ShapeProducer (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ShapeProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="ShapeProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -218,7 +218,7 @@ int getWindingRule() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html index 876994a3e..d996141b0 100644 --- a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html @@ -2,12 +2,12 @@ - + -StringNormalizingReader (mxGraph 1.10.1.5 API Specification) +StringNormalizingReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ StringNormalizingReader (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="StringNormalizingReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="StringNormalizingReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -454,7 +454,7 @@ public void close() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html index 095e78c09..72bdcc1a5 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPathProducer -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html index 45d7498e4..22d7456b2 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.AWTPolygonProducer -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html index 71679d44e..068d392ae 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.1.5 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html index a2d28def8..91bad0f1a 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -163,7 +163,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html index cdc934a35..7a78ada46 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html +++ b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.CSSConstants -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html index 0b618ba28..757025218 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.1.5 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.DefaultErrorHandler -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html index 3115b52f5..b2ee60b41 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.1.5 API Specif function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -185,7 +185,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html index 1095640dd..a52bcd9c3 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.1.5 API Spe function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -145,7 +145,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html index 4050fb459..d8e8abf6e 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.1.5 AP function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html index f28ee29b3..cd19b169c 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html index 883766515..6dfcb1432 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -155,7 +155,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html index c83a2a128..95a33d80b 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.1.5 API Specific function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -920,7 +920,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/Parser.html b/java/docs/com/mxgraph/util/svg/class-use/Parser.html index 93b9359f6..f31d973aa 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/Parser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/Parser.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -171,7 +171,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html index 4ef643515..9f8514a10 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.1.5 API Specifi function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -208,7 +208,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html index 6e44ae2c9..2b05c4512 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PathParser -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html index f192e441b..f96f53a7b 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -215,7 +215,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html index bf30ce51e..4401619d8 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.1.5 API Specificat function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.PointsParser -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html index 8a23338cd..e31875b76 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html +++ b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -162,7 +162,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html index e0b3a8fd4..aa75d5b1c 100644 --- a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html +++ b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.util.svg.StringNormalizingReader -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/package-frame.html b/java/docs/com/mxgraph/util/svg/package-frame.html index 1301313a0..1ae531fa4 100644 --- a/java/docs/com/mxgraph/util/svg/package-frame.html +++ b/java/docs/com/mxgraph/util/svg/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/util/svg/package-summary.html b/java/docs/com/mxgraph/util/svg/package-summary.html index e91014a5f..4f334ae4e 100644 --- a/java/docs/com/mxgraph/util/svg/package-summary.html +++ b/java/docs/com/mxgraph/util/svg/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -227,7 +227,7 @@ Package com.mxgraph.util.svg -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/package-tree.html b/java/docs/com/mxgraph/util/svg/package-tree.html index 17cc0e4e5..37bf2b562 100644 --- a/java/docs/com/mxgraph/util/svg/package-tree.html +++ b/java/docs/com/mxgraph/util/svg/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -146,7 +146,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/util/svg/package-use.html b/java/docs/com/mxgraph/util/svg/package-use.html index 5230b72ab..daac325b1 100644 --- a/java/docs/com/mxgraph/util/svg/package-use.html +++ b/java/docs/com/mxgraph/util/svg/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -211,7 +211,7 @@ Classes in
com.m -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxCellState.html b/java/docs/com/mxgraph/view/class-use/mxCellState.html index 8fa1659ad..0c5cd96d3 100644 --- a/java/docs/com/mxgraph/view/class-use/mxCellState.html +++ b/java/docs/com/mxgraph/view/class-use/mxCellState.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -2366,7 +2366,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html index c088666de..c024c18c5 100644 --- a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.1.5 API Spec function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -222,7 +222,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html index f909fd33b..a8586ac61 100644 --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxEdgeStyle -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html index 8c5800258..f77b40fa8 100644 --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -241,7 +241,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.html b/java/docs/com/mxgraph/view/class-use/mxGraph.html index 437f40f83..08a8bff77 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraph.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1138,7 +1138,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html index 2b61099e8..26e3b980e 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.1.5 API function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -161,7 +161,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html index a6c1ab07a..8284a7c74 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -194,7 +194,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html index e5ae89081..7d60a86e7 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.html index 008ec7746..8cda04274 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -279,7 +279,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html index cff6b5729..071f4ccd6 100644 --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.1.5 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxGraphView.mxCurrentRootChange -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html index bb04d9aed..83e46a951 100644 --- a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxLayoutManager -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html index 4cfe0c739..cc44cd6c0 100644 --- a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html +++ b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -178,7 +178,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html index fc43bc09a..94898d602 100644 --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxPerimeter -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html index b7fa25dcd..45e497b7e 100644 --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html @@ -2,12 +2,12 @@ - + -Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.1.5 API Specification) +Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10 function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -194,7 +194,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html index 7d0cdd2d3..3daff67af 100644 --- a/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.1.5 API Specificatio function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSpaceManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSpaceManager -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html index f3cd59ab7..920919761 100644 --- a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.1.5 API Specificati function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxStyleRegistry -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html index a120bb9e7..190000b01 100644 --- a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html +++ b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -207,7 +207,7 @@ Uses of
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html index 8feec17fc..5b12e5ece 100644 --- a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html +++ b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.1.5 API Specifica function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxSwimlaneManager -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html index 034ea5047..354003fa2 100644 --- a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html +++ b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html @@ -2,12 +2,12 @@ - + -Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.1.5 API Specification) +Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.1.5 API Speci function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -109,7 +109,7 @@ No usage of com.mxgraph.view.mxTemporaryCellStates -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxCellState.html b/java/docs/com/mxgraph/view/mxCellState.html index a5e40fb2a..c4b818bbb 100644 --- a/java/docs/com/mxgraph/view/mxCellState.html +++ b/java/docs/com/mxgraph/view/mxCellState.html @@ -2,12 +2,12 @@ - + -mxCellState (mxGraph 1.10.1.5 API Specification) +mxCellState (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxCellState (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxCellState (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxCellState (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1381,7 +1381,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/mxConnectionConstraint.html index bf5ee53ab..4b67a81d7 100644 --- a/java/docs/com/mxgraph/view/mxConnectionConstraint.html +++ b/java/docs/com/mxgraph/view/mxConnectionConstraint.html @@ -2,12 +2,12 @@ - + -mxConnectionConstraint (mxGraph 1.10.1.5 API Specification) +mxConnectionConstraint (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxConnectionConstraint (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxConnectionConstraint (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxConnectionConstraint (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -383,7 +383,7 @@ public void setPerimeter(boolean value) -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.html b/java/docs/com/mxgraph/view/mxEdgeStyle.html index cce26d18d..1e2c4a1dd 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle (mxGraph 1.10.1.5 API Specification) +mxEdgeStyle (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEdgeStyle (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -754,7 +754,7 @@ public mxEdgeStyle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html index bf7525580..d6b8e9f08 100644 --- a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html @@ -2,12 +2,12 @@ - + -mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.1.5 API Specification) +mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -190,7 +190,7 @@ void apply(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxGraph.html b/java/docs/com/mxgraph/view/mxGraph.html index 07c06f750..d4081b53f 100644 --- a/java/docs/com/mxgraph/view/mxGraph.html +++ b/java/docs/com/mxgraph/view/mxGraph.html @@ -2,12 +2,12 @@ - + -mxGraph (mxGraph 1.10.1.5 API Specification) +mxGraph (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraph (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraph (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -4080,7 +4080,7 @@ VERSION public static final
String VERSION
Holds the version number of this release. Current version - is 1.10.1.5. + is 1.10.2.0.

See Also:
Constant Field Values
@@ -10263,7 +10263,7 @@ public static void main( -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html index 74ff71541..54cddd3c9 100644 --- a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html +++ b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html @@ -2,12 +2,12 @@ - + -mxGraph.mxICellVisitor (mxGraph 1.10.1.5 API Specification) +mxGraph.mxICellVisitor (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraph.mxICellVisitor (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraph.mxICellVisitor (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraph.mxICellVisitor (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -170,7 +170,7 @@ boolean visit(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html index a3574e142..48d294cdc 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel (mxGraph 1.10.1.5 API Specification) +mxGraphSelectionModel (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphSelectionModel (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -721,7 +721,7 @@ protected void cellRemoved(
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html index e9984f84d..d8fb8e250 100644 --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html @@ -2,12 +2,12 @@ - + -mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.1.5 API Specification) +mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -301,7 +301,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxGraphView.html b/java/docs/com/mxgraph/view/mxGraphView.html index 37927c26e..824f8baa7 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.html +++ b/java/docs/com/mxgraph/view/mxGraphView.html @@ -2,12 +2,12 @@ - + -mxGraphView (mxGraph 1.10.1.5 API Specification) +mxGraphView (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphView (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1716,7 +1716,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html index d7131cbd2..c43d915ed 100644 --- a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html +++ b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html @@ -2,12 +2,12 @@ - + -mxGraphView.mxCurrentRootChange (mxGraph 1.10.1.5 API Specification) +mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxGraphView.mxCurrentRootChange (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -416,7 +416,7 @@ public void execute() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxLayoutManager.html b/java/docs/com/mxgraph/view/mxLayoutManager.html index 202c9e054..1ac9a69b3 100644 --- a/java/docs/com/mxgraph/view/mxLayoutManager.html +++ b/java/docs/com/mxgraph/view/mxLayoutManager.html @@ -2,12 +2,12 @@ - + -mxLayoutManager (mxGraph 1.10.1.5 API Specification) +mxLayoutManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxLayoutManager (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxLayoutManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxLayoutManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -648,7 +648,7 @@ public void destroy() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxMultiplicity.html b/java/docs/com/mxgraph/view/mxMultiplicity.html index d5f7818b2..32db4e836 100644 --- a/java/docs/com/mxgraph/view/mxMultiplicity.html +++ b/java/docs/com/mxgraph/view/mxMultiplicity.html @@ -2,12 +2,12 @@ - + -mxMultiplicity (mxGraph 1.10.1.5 API Specification) +mxMultiplicity (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxMultiplicity (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxMultiplicity (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxMultiplicity (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -643,7 +643,7 @@ public int getMaxValue() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.html b/java/docs/com/mxgraph/view/mxPerimeter.html index 653962ffd..9f6d1fbe2 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.html @@ -2,12 +2,12 @@ - + -mxPerimeter (mxGraph 1.10.1.5 API Specification) +mxPerimeter (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPerimeter (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -327,7 +327,7 @@ public mxPerimeter() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html index 20f086961..dbf3b6f2a 100644 --- a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html +++ b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html @@ -2,12 +2,12 @@ - + -mxPerimeter.mxPerimeterFunction (mxGraph 1.10.1.5 API Specification) +mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxPerimeter.mxPerimeterFunction (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -186,7 +186,7 @@ apply -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxSpaceManager.html b/java/docs/com/mxgraph/view/mxSpaceManager.html index d3774a35a..f17f2444d 100644 --- a/java/docs/com/mxgraph/view/mxSpaceManager.html +++ b/java/docs/com/mxgraph/view/mxSpaceManager.html @@ -2,12 +2,12 @@ - + -mxSpaceManager (mxGraph 1.10.1.5 API Specification) +mxSpaceManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSpaceManager (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSpaceManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSpaceManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -721,7 +721,7 @@ public void destroy() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxStyleRegistry.html b/java/docs/com/mxgraph/view/mxStyleRegistry.html index f22aa3309..d4762b7fe 100644 --- a/java/docs/com/mxgraph/view/mxStyleRegistry.html +++ b/java/docs/com/mxgraph/view/mxStyleRegistry.html @@ -2,12 +2,12 @@ - + -mxStyleRegistry (mxGraph 1.10.1.5 API Specification) +mxStyleRegistry (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStyleRegistry (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStyleRegistry (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStyleRegistry (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -300,7 +300,7 @@ public static
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxStylesheet.html b/java/docs/com/mxgraph/view/mxStylesheet.html index 2b834b113..ca8a46e44 100644 --- a/java/docs/com/mxgraph/view/mxStylesheet.html +++ b/java/docs/com/mxgraph/view/mxStylesheet.html @@ -2,12 +2,12 @@ - + -mxStylesheet (mxGraph 1.10.1.5 API Specification) +mxStylesheet (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxStylesheet (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxStylesheet (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxStylesheet (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -487,7 +487,7 @@ public
-

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/mxSwimlaneManager.html index a3850dfed..b4ada70e1 100644 --- a/java/docs/com/mxgraph/view/mxSwimlaneManager.html +++ b/java/docs/com/mxgraph/view/mxSwimlaneManager.html @@ -2,12 +2,12 @@ - + -mxSwimlaneManager (mxGraph 1.10.1.5 API Specification) +mxSwimlaneManager (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxSwimlaneManager (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxSwimlaneManager (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxSwimlaneManager (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -751,7 +751,7 @@ public void destroy() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html index 52374a382..896388ce8 100644 --- a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html +++ b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html @@ -2,12 +2,12 @@ - + -mxTemporaryCellStates (mxGraph 1.10.1.5 API Specification) +mxTemporaryCellStates (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ mxTemporaryCellStates (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="mxTemporaryCellStates (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="mxTemporaryCellStates (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -343,7 +343,7 @@ public void destroy() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/package-frame.html b/java/docs/com/mxgraph/view/package-frame.html index 5df27a78f..ae671c86e 100644 --- a/java/docs/com/mxgraph/view/package-frame.html +++ b/java/docs/com/mxgraph/view/package-frame.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view (mxGraph 1.10.1.5 API Specification) +com.mxgraph.view (mxGraph 1.10.2.0 API Specification) - + diff --git a/java/docs/com/mxgraph/view/package-summary.html b/java/docs/com/mxgraph/view/package-summary.html index 05ee8dbef..bd85389d9 100644 --- a/java/docs/com/mxgraph/view/package-summary.html +++ b/java/docs/com/mxgraph/view/package-summary.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view (mxGraph 1.10.1.5 API Specification) +com.mxgraph.view (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.view (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -232,7 +232,7 @@ This package implements the graph component, represented by the mxGraph -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/package-tree.html b/java/docs/com/mxgraph/view/package-tree.html index 11d6215f0..fcf33d2ce 100644 --- a/java/docs/com/mxgraph/view/package-tree.html +++ b/java/docs/com/mxgraph/view/package-tree.html @@ -2,12 +2,12 @@ - + -com.mxgraph.view Class Hierarchy (mxGraph 1.10.1.5 API Specification) +com.mxgraph.view Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ com.mxgraph.view Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -132,7 +132,7 @@ Interface Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/com/mxgraph/view/package-use.html b/java/docs/com/mxgraph/view/package-use.html index e99194ebf..c1189c313 100644 --- a/java/docs/com/mxgraph/view/package-use.html +++ b/java/docs/com/mxgraph/view/package-use.html @@ -2,12 +2,12 @@ - + -Uses of Package com.mxgraph.view (mxGraph 1.10.1.5 API Specification) +Uses of Package com.mxgraph.view (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Uses of Package com.mxgraph.view (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Uses of Package com.mxgraph.view (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Uses of Package com.mxgraph.view (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -554,7 +554,7 @@ Classes in
com.mxgraph. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/constant-values.html b/java/docs/constant-values.html index 028f4b7e6..9cb592a98 100644 --- a/java/docs/constant-values.html +++ b/java/docs/constant-values.html @@ -2,12 +2,12 @@ - + -Constant Field Values (mxGraph 1.10.1.5 API Specification) +Constant Field Values (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Constant Field Values (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Constant Field Values (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Constant Field Values (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -1042,7 +1042,7 @@ com.mxgraph.*
public static final String VERSION -"1.10.1.5" +"1.10.2.0" @@ -1075,7 +1075,7 @@ com.mxgraph.* -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/deprecated-list.html b/java/docs/deprecated-list.html index df67d4b6b..1be05b013 100644 --- a/java/docs/deprecated-list.html +++ b/java/docs/deprecated-list.html @@ -2,12 +2,12 @@ - + -Deprecated List (mxGraph 1.10.1.5 API Specification) +Deprecated List (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Deprecated List (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Deprecated List (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Deprecated List (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -191,7 +191,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/help-doc.html b/java/docs/help-doc.html index 4655aa737..45c5f6d08 100644 --- a/java/docs/help-doc.html +++ b/java/docs/help-doc.html @@ -2,12 +2,12 @@ - + -API Help (mxGraph 1.10.1.5 API Specification) +API Help (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ API Help (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="API Help (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="API Help (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -188,7 +188,7 @@ This help file applies to API documentation generated using the standard doclet. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/index-all.html b/java/docs/index-all.html index 736fdbb59..a048fadad 100644 --- a/java/docs/index-all.html +++ b/java/docs/index-all.html @@ -2,12 +2,12 @@ - + -Index (mxGraph 1.10.1.5 API Specification) +Index (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Index (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Index (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Index (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -10385,6 +10385,9 @@ Variable in class com.mxgraph.util.svg.readFile(String) - Static method in class com.mxgraph.util.mxUtils
Reads the given filename into a string. +
readInputStream(InputStream) - +Static method in class com.mxgraph.util.mxUtils +
Reads the given filename into a string.
receive(Node) - Method in class com.mxgraph.sharing.mxSession
Posts the change represented by the given XML string to the shared diagram. @@ -14609,7 +14612,7 @@ Method in class com.mxgraph.util.svg. -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/index.html b/java/docs/index.html index f67ce292a..f18fe5872 100644 --- a/java/docs/index.html +++ b/java/docs/index.html @@ -2,9 +2,9 @@ - + -mxGraph 1.10.1.5 API Specification +mxGraph 1.10.2.0 API Specification @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -81,7 +81,7 @@ function windowTitle()

-mxGraph 1.10.1.5 API Specification +mxGraph 1.10.2.0 API Specification

@@ -221,7 +221,7 @@ mxGraph 1.10.1.5 API Specification -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/overview-tree.html b/java/docs/overview-tree.html index 1383e6d2b..825439587 100644 --- a/java/docs/overview-tree.html +++ b/java/docs/overview-tree.html @@ -2,12 +2,12 @@ - + -Class Hierarchy (mxGraph 1.10.1.5 API Specification) +Class Hierarchy (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Class Hierarchy (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Class Hierarchy (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Class Hierarchy (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -280,7 +280,7 @@ Enum Hierarchy -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/docs/serialized-form.html b/java/docs/serialized-form.html index 0bed41fbe..3dd0ac633 100644 --- a/java/docs/serialized-form.html +++ b/java/docs/serialized-form.html @@ -2,12 +2,12 @@ - + -Serialized Form (mxGraph 1.10.1.5 API Specification) +Serialized Form (mxGraph 1.10.2.0 API Specification) - + @@ -15,7 +15,7 @@ Serialized Form (mxGraph 1.10.1.5 API Specification) function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Serialized Form (mxGraph 1.10.1.5 API Specification)"; + parent.document.title="Serialized Form (mxGraph 1.10.2.0 API Specification)"; } } @@ -49,7 +49,7 @@ function windowTitle() -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

@@ -2526,7 +2526,7 @@ visibleTargetState -

mxGraph 1.10.1.5

+

mxGraph 1.10.2.0

diff --git a/java/examples/com/mxgraph/examples/web/resources/roundtrip.html b/java/examples/com/mxgraph/examples/web/resources/roundtrip.html index 9c23be280..9cff68291 100755 --- a/java/examples/com/mxgraph/examples/web/resources/roundtrip.html +++ b/java/examples/com/mxgraph/examples/web/resources/roundtrip.html @@ -1,5 +1,5 @@ + diff --git a/java/lib/mxgraph-all.jar b/java/lib/mxgraph-all.jar index 01343cb72..9e3dbef90 100644 Binary files a/java/lib/mxgraph-all.jar and b/java/lib/mxgraph-all.jar differ diff --git a/java/lib/mxgraph-core.jar b/java/lib/mxgraph-core.jar index fad8ac815..223119060 100644 Binary files a/java/lib/mxgraph-core.jar and b/java/lib/mxgraph-core.jar differ diff --git a/java/lib/mxgraph-swing.jar b/java/lib/mxgraph-swing.jar index 2ebe2686d..041c2ada0 100644 Binary files a/java/lib/mxgraph-swing.jar and b/java/lib/mxgraph-swing.jar differ diff --git a/java/src/com/mxgraph/util/mxUtils.java b/java/src/com/mxgraph/util/mxUtils.java index 0e2275d42..9360f8fdc 100755 --- a/java/src/com/mxgraph/util/mxUtils.java +++ b/java/src/com/mxgraph/util/mxUtils.java @@ -1,5 +1,5 @@ /** - * $Id: mxUtils.java,v 1.125 2012-05-24 06:55:16 gaudenz Exp $ + * $Id: mxUtils.java,v 1.126 2012-07-19 19:18:42 gaudenz Exp $ * Copyright (c) 2007-2012, JGraph Ltd */ package com.mxgraph.util; @@ -23,6 +23,7 @@ import java.io.ByteArrayInputStream; import java.io.FileInputStream; import java.io.FileWriter; import java.io.IOException; +import java.io.InputStream; import java.io.InputStreamReader; import java.net.URL; import java.security.MessageDigest; @@ -1734,12 +1735,12 @@ public class mxUtils try { String tmp = colorString; - + if (tmp.startsWith("#")) { tmp = tmp.substring(1); } - + value = (int) Long.parseLong(tmp, 16); } catch (NumberFormatException nfe) @@ -1780,8 +1781,21 @@ public class mxUtils */ public static String readFile(String filename) throws IOException { - BufferedReader reader = new BufferedReader(new InputStreamReader( - new FileInputStream(filename))); + return readInputStream(new FileInputStream(filename)); + } + + /** + * Reads the given filename into a string. + * + * @param filename + * Name of the file to be read. + * @return Returns a string representing the file contents. + * @throws IOException + */ + public static String readInputStream(InputStream stream) throws IOException + { + BufferedReader reader = new BufferedReader( + new InputStreamReader(stream)); StringBuffer result = new StringBuffer(); String tmp = reader.readLine(); diff --git a/java/src/com/mxgraph/view/mxGraph.java b/java/src/com/mxgraph/view/mxGraph.java index f29f28b10..4635ee279 100644 --- a/java/src/com/mxgraph/view/mxGraph.java +++ b/java/src/com/mxgraph/view/mxGraph.java @@ -195,9 +195,9 @@ public class mxGraph extends mxEventSource /** * Holds the version number of this release. Current version - * is 1.10.1.5. + * is 1.10.2.0. */ - public static final String VERSION = "1.10.1.5"; + public static final String VERSION = "1.10.2.0"; /** * diff --git a/javascript/examples/codec.html b/javascript/examples/codec.html index 62a1c5849..4992de16e 100755 --- a/javascript/examples/codec.html +++ b/javascript/examples/codec.html @@ -1,5 +1,5 @@ - - - - + - - - + This graph is embedded in the page. +
<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/><mxCell id="2" vertex="1" parent="1" value="Interval 1"><mxGeometry x="380" y="0" width="140" height="30" as="geometry"/></mxCell><mxCell id="3" vertex="1" parent="1" value="Interval 2"><mxGeometry x="200" y="80" width="380" height="30" as="geometry"/></mxCell><mxCell id="4" vertex="1" parent="1" value="Interval 3"><mxGeometry x="40" y="140" width="260" height="30" as="geometry"/></mxCell><mxCell id="5" vertex="1" parent="1" value="Interval 4"><mxGeometry x="120" y="200" width="240" height="30" as="geometry"/></mxCell><mxCell id="6" vertex="1" parent="1" value="Interval 5"><mxGeometry x="420" y="260" width="80" height="30" as="geometry"/></mxCell><mxCell id="7" edge="1" source="2" target="3" parent="1" value="Transfer1"><mxGeometry as="geometry"><Array as="points"><Object x="420" y="60"/></Array></mxGeometry></mxCell><mxCell id="8" edge="1" source="2" target="6" parent="1" value=""><mxGeometry as="geometry" relative="1" y="-30"><Array as="points"><Object x="600" y="60"/></Array></mxGeometry></mxCell><mxCell id="9" edge="1" source="3" target="4" parent="1" value="Transfer3"><mxGeometry as="geometry"><Array as="points"><Object x="260" y="120"/></Array></mxGeometry></mxCell><mxCell id="10" edge="1" source="4" target="5" parent="1" value="Transfer4"><mxGeometry as="geometry"><Array as="points"><Object x="200" y="180"/></Array></mxGeometry></mxCell><mxCell id="11" edge="1" source="4" target="6" parent="1" value="Transfer5"><mxGeometry as="geometry" relative="1" y="-10"><Array as="points"><Object x="460" y="155"/></Array></mxGeometry></mxCell></root></mxGraphModel>
+ This graph is embedded in the page. +
<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/><mxCell id="2" vertex="1" parent="1" value="Interval 1"><mxGeometry x="380" y="0" width="140" height="30" as="geometry"/></mxCell><mxCell id="3" vertex="1" parent="1" value="Interval 2"><mxGeometry x="200" y="80" width="380" height="30" as="geometry"/></mxCell><mxCell id="4" vertex="1" parent="1" value="Interval 3"><mxGeometry x="40" y="140" width="260" height="30" as="geometry"/></mxCell><mxCell id="5" vertex="1" parent="1" value="Interval 4"><mxGeometry x="120" y="200" width="240" height="30" as="geometry"/></mxCell><mxCell id="6" vertex="1" parent="1" value="Interval 5"><mxGeometry x="420" y="260" width="80" height="30" as="geometry"/></mxCell><mxCell id="7" edge="1" source="2" target="3" parent="1" value="Transfer1"><mxGeometry as="geometry"><Array as="points"><Object x="420" y="60"/></Array></mxGeometry></mxCell><mxCell id="8" edge="1" source="2" target="6" parent="1" value=""><mxGeometry as="geometry" relative="1" y="-30"><Array as="points"><Object x="600" y="60"/></Array></mxGeometry></mxCell><mxCell id="9" edge="1" source="3" target="4" parent="1" value="Transfer3"><mxGeometry as="geometry"><Array as="points"><Object x="260" y="120"/></Array></mxGeometry></mxCell><mxCell id="10" edge="1" source="4" target="5" parent="1" value="Transfer4"><mxGeometry as="geometry"><Array as="points"><Object x="200" y="180"/></Array></mxGeometry></mxCell><mxCell id="11" edge="1" source="4" target="6" parent="1" value="Transfer5"><mxGeometry as="geometry" relative="1" y="-10"><Array as="points"><Object x="460" y="155"/></Array></mxGeometry></mxCell></root></mxGraphModel>
+ This graph is embedded in the page. +
<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/><mxCell id="2" vertex="1" parent="1" value="Interval 1"><mxGeometry x="380" y="20" width="140" height="30" as="geometry"/></mxCell><mxCell id="3" vertex="1" parent="1" value="Interval 2"><mxGeometry x="200" y="80" width="380" height="30" as="geometry"/></mxCell><mxCell id="4" vertex="1" parent="1" value="Interval 3"><mxGeometry x="40" y="140" width="260" height="30" as="geometry"/></mxCell><mxCell id="5" vertex="1" parent="1" value="Interval 4"><mxGeometry x="120" y="200" width="240" height="30" as="geometry"/></mxCell><mxCell id="6" vertex="1" parent="1" value="Interval 5"><mxGeometry x="420" y="260" width="80" height="30" as="geometry"/></mxCell><mxCell id="7" edge="1" source="2" target="3" parent="1" value="Transfer1"><mxGeometry as="geometry"><Array as="points"><Object x="420" y="60"/></Array></mxGeometry></mxCell><mxCell id="8" edge="1" source="2" target="6" parent="1" value="Transfer2"><mxGeometry as="geometry" relative="1" y="0"><Array as="points"><Object x="600" y="60"/></Array></mxGeometry></mxCell><mxCell id="9" edge="1" source="3" target="4" parent="1" value="Transfer3"><mxGeometry as="geometry"><Array as="points"><Object x="260" y="120"/></Array></mxGeometry></mxCell><mxCell id="10" edge="1" source="4" target="5" parent="1" value="Transfer4"><mxGeometry as="geometry"><Array as="points"><Object x="200" y="180"/></Array></mxGeometry></mxCell><mxCell id="11" edge="1" source="4" target="6" parent="1" value="Transfer5"><mxGeometry as="geometry" relative="1" y="-10"><Array as="points"><Object x="460" y="155"/></Array></mxGeometry></mxCell></root></mxGraphModel>
+ This graph is embedded in the page. +
<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/><mxCell id="2" vertex="1" parent="1" value="Interval 1"><mxGeometry x="380" y="20" width="140" height="30" as="geometry"/></mxCell><mxCell id="3" vertex="1" parent="1" value="Interval 2"><mxGeometry x="200" y="80" width="380" height="30" as="geometry"/></mxCell><mxCell id="4" vertex="1" parent="1" value="Interval 3"><mxGeometry x="40" y="140" width="260" height="30" as="geometry"/></mxCell><mxCell id="5" vertex="1" parent="1" value="Interval 4"><mxGeometry x="120" y="200" width="240" height="30" as="geometry"/></mxCell><mxCell id="6" vertex="1" parent="1" value="Interval 5"><mxGeometry x="420" y="260" width="80" height="30" as="geometry"/></mxCell><mxCell id="7" edge="1" source="2" target="3" parent="1" value="Transfer1"><mxGeometry as="geometry"><Array as="points"><Object x="420" y="60"/></Array></mxGeometry></mxCell><mxCell id="8" edge="1" source="2" target="6" parent="1" value="Transfer2"><mxGeometry as="geometry" relative="1" y="0"><Array as="points"><Object x="600" y="60"/></Array></mxGeometry></mxCell><mxCell id="9" edge="1" source="3" target="4" parent="1" value="Transfer3"><mxGeometry as="geometry"><Array as="points"><Object x="260" y="120"/></Array></mxGeometry></mxCell><mxCell id="10" edge="1" source="4" target="5" parent="1" value="Transfer4"><mxGeometry as="geometry"><Array as="points"><Object x="200" y="180"/></Array></mxGeometry></mxCell><mxCell id="11" edge="1" source="4" target="6" parent="1" value="Transfer5"><mxGeometry as="geometry" relative="1" y="-10"><Array as="points"><Object x="460" y="155"/></Array></mxGeometry></mxCell></root></mxGraphModel>
+ This graph is embedded in the page. + diff --git a/javascript/examples/contexticons.html b/javascript/examples/contexticons.html index 7707490cd..aa6d56c7e 100644 --- a/javascript/examples/contexticons.html +++ b/javascript/examples/contexticons.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/control.html b/javascript/examples/control.html index 32f739ea4..b5c6c9f70 100644 --- a/javascript/examples/control.html +++ b/javascript/examples/control.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/dragsource.html b/javascript/examples/dragsource.html index 1a35b073a..99af88c07 100644 --- a/javascript/examples/dragsource.html +++ b/javascript/examples/dragsource.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/dynamicloading.html b/javascript/examples/dynamicloading.html index 5f0091f64..4617e302d 100755 --- a/javascript/examples/dynamicloading.html +++ b/javascript/examples/dynamicloading.html @@ -1,5 +1,5 @@ + + diff --git a/javascript/examples/edgetolerance.html b/javascript/examples/edgetolerance.html index 82aeb00f7..9d220c78d 100644 --- a/javascript/examples/edgetolerance.html +++ b/javascript/examples/edgetolerance.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/editing.html b/javascript/examples/editing.html index e09797176..1e3fea9e1 100755 --- a/javascript/examples/editing.html +++ b/javascript/examples/editing.html @@ -1,5 +1,5 @@ +

Double-click the upper/lower half of the cell to edit different fields of the user object. diff --git a/javascript/examples/extjs.html b/javascript/examples/extjs.html index 0c70e1f46..c5c609178 100755 --- a/javascript/examples/extjs.html +++ b/javascript/examples/extjs.html @@ -1,5 +1,5 @@ +

diff --git a/javascript/examples/fileio.html b/javascript/examples/fileio.html index d674088d3..41734affb 100755 --- a/javascript/examples/fileio.html +++ b/javascript/examples/fileio.html @@ -1,5 +1,5 @@ + + diff --git a/javascript/examples/fixedpoints.html b/javascript/examples/fixedpoints.html index 74d4dc129..65656a016 100755 --- a/javascript/examples/fixedpoints.html +++ b/javascript/examples/fixedpoints.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/grapheditor/www/js/Dialogs.js b/javascript/examples/grapheditor/www/js/Dialogs.js index d5334d3c1..77625f854 100644 --- a/javascript/examples/grapheditor/www/js/Dialogs.js +++ b/javascript/examples/grapheditor/www/js/Dialogs.js @@ -1,5 +1,5 @@ /** - * $Id: Dialogs.js,v 1.45 2012-06-08 15:07:04 gaudenz Exp $ + * $Id: Dialogs.js,v 1.46 2012-07-19 19:09:23 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -37,7 +37,7 @@ function Dialog(editorUi, elt, w, h, modal, closable, onClose) this.bg.style.right = '0px'; mxUtils.setOpacity(this.bg, 80); - if (mxClient.IS_IE && (document.documentMode == null || document.documentMode == 5)) + if (mxClient.IS_QUIRKS) { new mxDivResizer(this.bg); } diff --git a/javascript/examples/grapheditor/www/js/Sidebar.js b/javascript/examples/grapheditor/www/js/Sidebar.js index 0ef875c1b..900ce7979 100644 --- a/javascript/examples/grapheditor/www/js/Sidebar.js +++ b/javascript/examples/grapheditor/www/js/Sidebar.js @@ -1,5 +1,5 @@ /** - * $Id: Sidebar.js,v 1.66 2012-07-16 07:50:17 gaudenz Exp $ + * $Id: Sidebar.js,v 1.67 2012-07-19 19:09:23 gaudenz Exp $ * Copyright (c) 2006-2012, JGraph Ltd */ /** @@ -219,7 +219,7 @@ Sidebar.prototype.showTooltip = function(elt, cells) var width = bounds.x + bounds.width + this.tooltipBorder; var height = bounds.y + bounds.height + this.tooltipBorder; - if (mxClient.IS_IE && (document.documentMode == null || document.documentMode == 5)) + if (mxClient.IS_QUIRKS) { width += 4; height += 4; diff --git a/javascript/examples/graphlayout.html b/javascript/examples/graphlayout.html index f497dd1ae..7af446e9b 100755 --- a/javascript/examples/graphlayout.html +++ b/javascript/examples/graphlayout.html @@ -1,5 +1,5 @@ + + diff --git a/javascript/examples/guides.html b/javascript/examples/guides.html index 9187d92eb..fd3018bc1 100644 --- a/javascript/examples/guides.html +++ b/javascript/examples/guides.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/helloport.html b/javascript/examples/helloport.html index cf4614306..a1c10d032 100755 --- a/javascript/examples/helloport.html +++ b/javascript/examples/helloport.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/helloworld.html b/javascript/examples/helloworld.html index 98f6d04d8..9782043e3 100755 --- a/javascript/examples/helloworld.html +++ b/javascript/examples/helloworld.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/hierarchicallayout.html b/javascript/examples/hierarchicallayout.html index 65e9fff4c..16db3e55d 100755 --- a/javascript/examples/hierarchicallayout.html +++ b/javascript/examples/hierarchicallayout.html @@ -1,5 +1,5 @@ + + diff --git a/javascript/examples/ie9svg.html b/javascript/examples/ie9svg.html index 0b9a0ad5a..eeaa3f772 100644 --- a/javascript/examples/ie9svg.html +++ b/javascript/examples/ie9svg.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/images.html b/javascript/examples/images.html index 95c2341a6..732252fb2 100755 --- a/javascript/examples/images.html +++ b/javascript/examples/images.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/indicators.html b/javascript/examples/indicators.html index 770cb4ea2..a463db458 100755 --- a/javascript/examples/indicators.html +++ b/javascript/examples/indicators.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/labelposition.html b/javascript/examples/labelposition.html index bcbbbe9ac..23e14ecc4 100755 --- a/javascript/examples/labelposition.html +++ b/javascript/examples/labelposition.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/labels.html b/javascript/examples/labels.html index 34b388497..e42ac4057 100755 --- a/javascript/examples/labels.html +++ b/javascript/examples/labels.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/layers.html b/javascript/examples/layers.html index 0bfcf2eac..6329b64b0 100755 --- a/javascript/examples/layers.html +++ b/javascript/examples/layers.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/menustyle.html b/javascript/examples/menustyle.html index 9a97e4b09..1fa64c6d4 100644 --- a/javascript/examples/menustyle.html +++ b/javascript/examples/menustyle.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/merge.html b/javascript/examples/merge.html index 33052657b..07286a99c 100755 --- a/javascript/examples/merge.html +++ b/javascript/examples/merge.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/orgchart.html b/javascript/examples/orgchart.html index 3d65a5b40..cc4096c6e 100755 --- a/javascript/examples/orgchart.html +++ b/javascript/examples/orgchart.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/overlays.html b/javascript/examples/overlays.html index 9efbb871c..8e96095d2 100755 --- a/javascript/examples/overlays.html +++ b/javascript/examples/overlays.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/pagebreaks.html b/javascript/examples/pagebreaks.html index 89db11d39..ddb9a5e6c 100755 --- a/javascript/examples/pagebreaks.html +++ b/javascript/examples/pagebreaks.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/perimeter.html b/javascript/examples/perimeter.html index 238faf9eb..8ab8197da 100644 --- a/javascript/examples/perimeter.html +++ b/javascript/examples/perimeter.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/permissions.html b/javascript/examples/permissions.html index 6da6f2d50..013b2c245 100755 --- a/javascript/examples/permissions.html +++ b/javascript/examples/permissions.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/ports.html b/javascript/examples/ports.html index 3d3577d43..a06d287c2 100755 --- a/javascript/examples/ports.html +++ b/javascript/examples/ports.html @@ -1,5 +1,5 @@ + - + diff --git a/javascript/examples/secondlabel.html b/javascript/examples/secondlabel.html index a10b39d4d..e7e008bba 100755 --- a/javascript/examples/secondlabel.html +++ b/javascript/examples/secondlabel.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/serverview.html b/javascript/examples/serverview.html index d781fd52a..bf97afdf6 100644 --- a/javascript/examples/serverview.html +++ b/javascript/examples/serverview.html @@ -1,5 +1,5 @@ +

- + diff --git a/javascript/examples/standardsmode.html b/javascript/examples/standardsmode.html index 422356068..1786ec4c4 100644 --- a/javascript/examples/standardsmode.html +++ b/javascript/examples/standardsmode.html @@ -1,7 +1,7 @@ + diff --git a/javascript/examples/stencils.html b/javascript/examples/stencils.html index e59620894..0f62bfdb6 100644 --- a/javascript/examples/stencils.html +++ b/javascript/examples/stencils.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/stylesheet.html b/javascript/examples/stylesheet.html index 0bdb44810..1a9afa9aa 100755 --- a/javascript/examples/stylesheet.html +++ b/javascript/examples/stylesheet.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/template.html b/javascript/examples/template.html index 86dfbcecf..f2c421cca 100755 --- a/javascript/examples/template.html +++ b/javascript/examples/template.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/thread.html b/javascript/examples/thread.html index 8f425c540..a9c3a4c29 100755 --- a/javascript/examples/thread.html +++ b/javascript/examples/thread.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/uiconfig.html b/javascript/examples/uiconfig.html index 81b0eef16..d93482529 100755 --- a/javascript/examples/uiconfig.html +++ b/javascript/examples/uiconfig.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/userobject.html b/javascript/examples/userobject.html index 0bf74c7f0..4162e4b38 100755 --- a/javascript/examples/userobject.html +++ b/javascript/examples/userobject.html @@ -1,5 +1,5 @@ +
diff --git a/javascript/examples/validation.html b/javascript/examples/validation.html index 9fca4c1d6..e0149003f 100755 --- a/javascript/examples/validation.html +++ b/javascript/examples/validation.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/windows.html b/javascript/examples/windows.html index 8b6cb98ee..bc00a295e 100755 --- a/javascript/examples/windows.html +++ b/javascript/examples/windows.html @@ -1,5 +1,5 @@ + diff --git a/javascript/examples/wrapping.html b/javascript/examples/wrapping.html index 11bb9e59a..28cf9909c 100755 --- a/javascript/examples/wrapping.html +++ b/javascript/examples/wrapping.html @@ -1,5 +1,5 @@ + diff --git a/javascript/mxClient.js b/javascript/mxClient.js index fa591047f..6f3092adf 100644 --- a/javascript/mxClient.js +++ b/javascript/mxClient.js @@ -1,5 +1,5 @@ /** - * $Id: mxClient.js,v 1.202 2012-07-16 15:08:56 gaudenz Exp $ + * $Id: mxClient.js,v 1.203 2012-07-19 15:19:07 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ var mxClient = @@ -21,9 +21,9 @@ var mxClient = * * versionMajor.versionMinor.buildNumber.revisionNumber * - * Current version is 1.10.1.5. + * Current version is 1.10.2.0. */ - VERSION: '1.10.1.5', + VERSION: '1.10.2.0', /** * Variable: IS_IE @@ -39,6 +39,13 @@ var mxClient = */ IS_IE6: navigator.userAgent.indexOf('MSIE 6') >= 0, + /** + * Variable: IS_QUIRKS + * + * True if the current browser is Internet Explorer and it is in quirks mode. + */ + IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >= 0 && (document.documentMode == null || document.documentMode == 5), + /** * Variable: IS_NS * @@ -8170,7 +8177,7 @@ mxEventSource.prototype.fireEvent = function(evt, sender) } }; /** - * $Id: mxEvent.js,v 1.72 2012-05-03 13:28:03 gaudenz Exp $ + * $Id: mxEvent.js,v 1.73 2012-07-18 11:34:20 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ var mxEvent = @@ -8231,7 +8238,7 @@ var mxEvent = { return function(element, eventName, funct) { - element.attachEvent("on" + eventName, funct); + element.attachEvent('on' + eventName, funct); updateListenerList(element, eventName, funct); }; } @@ -8280,7 +8287,7 @@ var mxEvent = { return function(element, eventName, funct) { - element.detachEvent("on" + eventName, funct); + element.detachEvent('on' + eventName, funct); updateListener(element, eventName, funct); }; } @@ -8701,6 +8708,15 @@ var mxEvent = */ LABEL_HANDLE: -1, + /** + * Variable: ROTATION_HANDLE + * + * Index for the rotation handle in an mxMouseEvent. This should be a + * negative value that does not interfere with any possible handle indices. + * Default is -2. + */ + ROTATION_HANDLE: -2, + // // Event names // @@ -46334,7 +46350,7 @@ mxStyleRegistry.putValue(mxConstants.PERIMETER_RECTANGLE, mxPerimeter.RectangleP mxStyleRegistry.putValue(mxConstants.PERIMETER_RHOMBUS, mxPerimeter.RhombusPerimeter); mxStyleRegistry.putValue(mxConstants.PERIMETER_TRIANGLE, mxPerimeter.TrianglePerimeter); /** - * $Id: mxGraphView.js,v 1.193 2012-07-16 15:30:58 gaudenz Exp $ + * $Id: mxGraphView.js,v 1.194 2012-07-19 15:18:35 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -48595,21 +48611,67 @@ mxGraphView.prototype.createHtml = function() if (container != null) { - this.canvas = this.createHtmlPane(); + this.canvas = this.createHtmlPane('100%', '100%'); - // Uses minimal size for stacked DIVs on Canvas. This is required + // Uses minimal size for inner DIVs on Canvas. This is required // for correct event processing in IE. If we have an overlapping - // DIV then the events on the cells are only fired when over a - // text region. - this.backgroundPane = this.createHtmlPane(1, 1); - this.drawPane = this.createHtmlPane(1, 1); - this.overlayPane = this.createHtmlPane(1, 1); + // DIV then the events on the cells are only fired for labels. + this.backgroundPane = this.createHtmlPane('1px', '1px'); + this.drawPane = this.createHtmlPane('1px', '1px'); + this.overlayPane = this.createHtmlPane('1px', '1px'); this.canvas.appendChild(this.backgroundPane); this.canvas.appendChild(this.drawPane); this.canvas.appendChild(this.overlayPane); container.appendChild(this.canvas); + + // Implements minWidth/minHeight in quirks mode + if (mxClient.IS_QUIRKS) + { + var onResize = mxUtils.bind(this, function(evt) + { + var bounds = this.getGraphBounds(); + var width = bounds.x + bounds.width + this.graph.border; + var height = bounds.y + bounds.height + this.graph.border; + + this.updateHtmlCanvasSize(width, height); + }); + + mxEvent.addListener(window, 'resize', onResize); + } + } +}; + +/** + * Function: updateHtmlCanvasSize + * + * Updates the size of the HTML canvas. + */ +mxGraphView.prototype.updateHtmlCanvasSize = function(width, height) +{ + if (this.graph.container != null) + { + var ow = this.graph.container.offsetWidth; + var oh = this.graph.container.offsetHeight; + + if (ow < width) + { + this.canvas.style.width = width + 'px'; + } + else + { + this.canvas.style.width = '100%'; + } + + if (oh < height) + { + this.canvas.style.height = height + 'px'; + } + else + { + this.canvas.style.height = '100%'; + } } }; @@ -48628,8 +48690,8 @@ mxGraphView.prototype.createHtmlPane = function(width, height) pane.style.left = '0px'; pane.style.top = '0px'; - pane.style.width = width+'px'; - pane.style.height = height+'px'; + pane.style.width = width; + pane.style.height = height; } else { @@ -48712,29 +48774,14 @@ mxGraphView.prototype.createSvg = function() this.canvas.appendChild(this.overlayPane); var root = document.createElementNS(mxConstants.NS_SVG, 'svg'); - - // Updates the clipping region of the svg element after - // a resize. This is required in Firefox. - var onResize = mxUtils.bind(this, function(evt) - { - if (this.graph.container != null) - { - var width = this.graph.container.offsetWidth; - var height = this.graph.container.offsetHeight; - var bounds = this.getGraphBounds(); - - root.setAttribute('width', Math.max(width, bounds.width)); - root.setAttribute('height', Math.max(height, bounds.height)); - } - }); + root.style.width = '100%'; + root.style.height = '100%'; - mxEvent.addListener(window, 'resize', onResize); - - if (mxClient.IS_OP) + if (mxClient.IS_IE) { - onResize(); + root.style.marginBottom = '-4px'; } - + root.appendChild(this.canvas); if (container != null) @@ -48848,7 +48895,7 @@ mxCurrentRootChange.prototype.execute = function() this.isUp = !this.isUp; }; /** - * $Id: mxGraph.js,v 1.693 2012-07-16 13:02:19 gaudenz Exp $ + * $Id: mxGraph.js,v 1.697 2012-07-19 17:15:37 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -51436,12 +51483,13 @@ mxGraph.prototype.createPanningManager = function() }; /** - * Function: getOffsetSize + * Function: getBorderSizes * - * Returns the actual size of the the viewport minus padding and border sizes. - * The value is returned in the width and height of an . + * Returns the size of the border and padding on all four sides of the + * container. The left, top, right and bottom borders are stored in the x, y, + * width and height of the returned , respectively. */ -mxGraph.prototype.getOffsetSize = function() +mxGraph.prototype.getBorderSizes = function() { // Helper function to handle string values for border widths (approx) function parseBorder(value) @@ -51474,16 +51522,13 @@ mxGraph.prototype.getOffsetSize = function() } var style = mxUtils.getCurrentStyle(this.container); - var dx = parseBorder(style.borderLeftWidth) + parseBorder(style.borderRightWidth) + - parseInt(style.paddingLeft || 0) + parseInt(style.paddingRight || 0); - var width = this.container.offsetWidth - dx; + var result = new mxRectangle(); + result.x = parseBorder(style.borderLeftWidth) + parseInt(style.paddingLeft || 0); + result.y = parseBorder(style.borderTopWidth) + parseInt(style.paddingTop || 0); + result.width = parseBorder(style.borderRightWidth) + parseInt(style.paddingRight || 0); + result.height = parseBorder(style.borderBottomWidth) + parseInt(style.paddingBottom || 0); - // Correction factor for height is 4 pixels - var dy = parseBorder(style.borderTopWidth) + parseBorder(style.borderBottomWidth) + - parseInt(style.paddingTop || 0) + parseInt(style.paddingBottom || 0); - var height = this.container.offsetHeight - 4 - dy; - - return new mxRectangle(0, 0, width, height); + return result; }; @@ -51532,19 +51577,9 @@ mxGraph.prototype.sizeDidChange = function() if (this.resizeContainer) { - var w = width; - var h = height; - - if (this.maximumContainerSize != null) - { - w = Math.min(this.maximumContainerSize.width, w); - h = Math.min(this.maximumContainerSize.height, h); - } - - this.container.style.width = w + 'px'; - this.container.style.height = h + 'px'; + this.doResizeContainer(width, height); } - + if (this.preferPageSize || (!mxClient.IS_IE && this.pageVisible)) { var size = this.getPreferredPageSize(bounds, width, height); @@ -51555,64 +51590,34 @@ mxGraph.prototype.sizeDidChange = function() height = size.height; } } + + if (this.minimumGraphSize != null) + { + width = Math.max(width, this.minimumGraphSize.width * this.view.scale); + height = Math.max(height, this.minimumGraphSize.height * this.view.scale); + } - var size = this.getOffsetSize(); - width = Math.max(width, size.width); - height = Math.max(height, size.height); + width = Math.ceil(width - 1); + height = Math.ceil(height - 1); if (this.dialect == mxConstants.DIALECT_SVG) { var root = this.view.getDrawPane().ownerSVGElement; - - if (this.minimumGraphSize != null) - { - width = Math.max(width, this.minimumGraphSize.width * this.view.scale); - height = Math.max(height, this.minimumGraphSize.height * this.view.scale); - } - - width = Math.ceil(width); - height = Math.ceil(height); - // Updates the clipping region. This is an expensive - // operation that should not be executed too often. - root.setAttribute('width', width); - root.setAttribute('height', height); - - // Workaround to trigger update (removal) of scrollbars - if (width <= this.container.offsetWidth && - this.container.clientWidth < this.container.offsetWidth) - { - var prevValue = this.container.style.overflow; - this.container.style.overflow = 'hidden'; - this.container.scrollLeft = 1; - this.container.style.overflow = prevValue; - } + root.style.minWidth = Math.max(1, width) + 'px'; + root.style.minHeight = Math.max(1, height) + 'px'; } else { - width = Math.ceil(width); - height = Math.ceil(height); - - var drawPane = this.view.getDrawPane(); - var canvas = this.view.getCanvas(); - - drawPane.style.width = width + 'px'; - drawPane.style.height = height + 'px'; - - // Must resize canvas for scrollbars to appear in IE since the - // canvas is hiding the overflow of the drawPane child - if (this.minimumGraphSize != null) + if (mxClient.IS_QUIRKS) { - width = Math.max(width, Math.ceil(this.minimumGraphSize.width * this.view.scale)); - height = Math.max(height, Math.ceil(this.minimumGraphSize.height * this.view.scale)); - - canvas.style.width = width + 'px'; - canvas.style.height = height + 'px'; + // Quirks mode has no minWidth/minHeight support + this.view.updateHtmlCanvasSize(Math.max(1, width), Math.max(1, height)); } else { - canvas.style.width = width + 'px'; - canvas.style.height = height + 'px'; + this.view.canvas.style.minWidth = Math.max(1, width) + 'px'; + this.view.canvas.style.minHeight = Math.max(1, height) + 'px'; } } @@ -51622,6 +51627,50 @@ mxGraph.prototype.sizeDidChange = function() this.fireEvent(new mxEventObject(mxEvent.SIZE, 'bounds', bounds)); }; +/** + * Function: doResizeContainer + * + * Resizes the container for the given graph width and height. + */ +mxGraph.prototype.doResizeContainer = function(width, height) +{ + // Fixes container size for different box models + if (mxClient.IS_IE) + { + if (mxClient.IS_QUIRKS) + { + var borders = this.getBorderSizes(); + + // max(2, ...) required for native IE8 in quirks mode + width += Math.max(2, borders.x + borders.width + 1); + height += Math.max(2, borders.y + borders.height + 1); + } + else if (document.documentMode >= 9) + { + width += 3; + height += 5; + } + else + { + width += 1; + height += 1; + } + } + else + { + height += 1; + } + + if (this.maximumContainerSize != null) + { + width = Math.min(this.maximumContainerSize.width, width); + height = Math.min(this.maximumContainerSize.height, height); + } + + this.container.style.width = Math.ceil(width) + 'px'; + this.container.style.height = Math.ceil(height) + 'px'; +}; + /** * Function: redrawPageBreaks * @@ -55903,11 +55952,12 @@ mxGraph.prototype.isCloneEvent = function(evt) * Function: isToggleEvent * * Returns true if the given event is a toggle event. This implementation - * returns true if control is pressed. + * returns true if the meta key (Cmd) is pressed on Macs or if control is + * pressed on any other platform. */ mxGraph.prototype.isToggleEvent = function(evt) { - return mxEvent.isControlDown(evt); + return (mxClient.IS_MAC) ? mxEvent.isMetaDown(evt) : mxEvent.isControlDown(evt); }; /** @@ -55934,11 +55984,11 @@ mxGraph.prototype.isConstrainedEvent = function(evt) * Function: isForceMarqueeEvent * * Returns true if the given event forces marquee selection. This implementation - * returns true if alt or meta is pressed. + * returns true if alt is pressed. */ mxGraph.prototype.isForceMarqueeEvent = function(evt) { - return mxEvent.isAltDown(evt) || mxEvent.isMetaDown(evt); + return mxEvent.isAltDown(evt); }; /** @@ -63616,7 +63666,7 @@ mxGraphHandler.prototype.destroy = function() this.destroyShapes(); }; /** - * $Id: mxPanningHandler.js,v 1.78 2012-03-30 12:16:14 gaudenz Exp $ + * $Id: mxPanningHandler.js,v 1.79 2012-07-17 14:37:41 gaudenz Exp $ * Copyright (c) 2006-2010, JGraph Ltd */ /** @@ -63821,11 +63871,44 @@ mxPanningHandler.prototype.mouseDown = function(sender, me) // Displays popup menu on Mac after the mouse was released if (this.panningTrigger) { - me.consume(); + this.consumePanningTrigger(me); } } }; +/** + * Function: consumePanningTrigger + * + * Consumes the given if it was a panning trigger in + * . The default is to invoke . Note that this + * will block any further event processing. If you haven't disabled built-in + * context menus and require immediate selection of the cell on mouseDown in + * Safari and/or on the Mac, then use the following code: + * + * (code) + * mxPanningHandler.prototype.consumePanningTrigger = function(me) + * { + * if (me.evt.preventDefault) + * { + * me.evt.preventDefault(); + * } + * + * // Stops event processing in IE + * me.evt.returnValue = false; + * + * // Sets local consumed state + * if (!mxClient.IS_SF && !mxClient.IS_MAC) + * { + * me.consumed = true; + * } + * }; + * (end) + */ +mxPanningHandler.prototype.consumePanningTrigger = function(me) +{ + me.consume(); +}; + /** * Function: mouseMove * diff --git a/javascript/mxClient.min.js b/javascript/mxClient.min.js index a0962d11b..dd912de7d 100755 --- a/javascript/mxClient.min.js +++ b/javascript/mxClient.min.js @@ -1,10 +1,10 @@ -var mxClient={VERSION:"1.10.1.5",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE"),IS_OP:0<=navigator.userAgent.indexOf("Opera/"),IS_OT:0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."), -IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&0>navigator.userAgent.indexOf("Chrome/"),IS_GC:0<=navigator.userAgent.indexOf("Chrome/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")|| -0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||0<=navigator.userAgent.indexOf("Epiphany/")||0<=navigator.userAgent.indexOf("AppleWebKit/")||0<=navigator.userAgent.indexOf("Gecko/")||0<=navigator.userAgent.indexOf("Opera/"),NO_FO:0<=navigator.userAgent.indexOf("Firefox/1.")|| -0<=navigator.userAgent.indexOf("Iceweasel/1.")||0<=navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/1.")||0<=navigator.userAgent.indexOf("Camino/1.")||0<=navigator.userAgent.indexOf("Epiphany/2.")||0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("MSIE")||0<=navigator.userAgent.indexOf("Mozilla/2."),IS_VML:"MICROSOFT INTERNET EXPLORER"==navigator.appName.toUpperCase(), -IS_MAC:0document.location.href.indexOf("http://")&&0>document.location.href.indexOf("https://"),isBrowserSupported:function(){return mxClient.IS_VML||mxClient.IS_SVG},link:function(a,b,c){c=c||document;if(mxClient.IS_IE6)c.write('');else{var d=c.createElement("link");d.setAttribute("rel",a);d.setAttribute("href",b);d.setAttribute("charset","ISO-8859-1");d.setAttribute("type","text/css");c.getElementsByTagName("head")[0].appendChild(d)}},include:function(a){document.write(' - + diff --git a/php/src/mxServer.php b/php/src/mxServer.php index 521b51060..41eb0d08d 100644 --- a/php/src/mxServer.php +++ b/php/src/mxServer.php @@ -5,15 +5,15 @@ * * Class: mxServer * - * Bootstrapping for the PHP backend. This is version 1.10.1.5 + * Bootstrapping for the PHP backend. This is version 1.10.2.0 * of mxGraph. * * Variable: MXGRAPH-VERSION * * Constant that holds the current mxGraph version. The current version - * is 1.10.1.5. + * is 1.10.2.0. */ -define("MXGRAPH-VERSION", "1.10.1.5"); +define("MXGRAPH-VERSION", "1.10.2.0"); include_once("util/mxLog.php"); include_once("util/mxConstants.php");