For bindings: The optional conversion function to convert property values back to data values.
Specifying this function modifies a binding to set its Binding.mode to be Binding.TwoWay.
If you want a two-way binding without a back-conversion function, specify null for a BackConversion.
diff --git a/api/symbols/ActionTool.html b/api/symbols/ActionTool.html
index efea0d3cd..2901a988e 100644
--- a/api/symbols/ActionTool.html
+++ b/api/symbols/ActionTool.html
@@ -1,4 +1,4 @@
-
The ActionTool is responsible for handling and dispatching mouse events on GraphObjects
that have GraphObject.isActionable set to true.
This is how one implements "controls", such as buttons or sliders or knobs, as GraphObjects
diff --git a/api/symbols/Adornment.html b/api/symbols/Adornment.html
index 1a60e7055..261d262ec 100644
--- a/api/symbols/Adornment.html
+++ b/api/symbols/Adornment.html
@@ -1,4 +1,4 @@
-
An Adornment is a special kind of Part that is associated with another Part,
the Adornment.adornedPart.
Adornments are normally associated with a particular GraphObject in the adorned Part --
diff --git a/api/symbols/Animation.html b/api/symbols/Animation.html
index db1d7a895..a6d6255f8 100644
--- a/api/symbols/Animation.html
+++ b/api/symbols/Animation.html
@@ -1,4 +1,4 @@
-
This class is useful for creating manual animations.
If you wish to animate particular properties on a GraphObject every time their value changes,
@@ -104,7 +104,15 @@
Default false. This is commonly used when animating opacity or scale of "disappearing" nodes during collapse.
Even though the node may appear to go to scale 0.001, the programmer usually wants the scale to reflect its prior value, once hidden.
Add a temporary Part to this animation.
+This part will be added to the Diagram when the animation is started,
+and removed from the Diagram when the animation completes.
+This is intended to be used with add, to animate properties of this Part or its elements.
+
The temporary part added is typically either a GraphObject.copy of an existing Part,
+which is to be deleted and requires a copy for animated effects, or else a wholly new temporary Part,
+constructed in memory for the purpose of creating some effect.
A part to add to the Diagram at the start of the animation and remove at the end.
This is typically either a copied Part already in the Diagram, to animate its deletion,
or a Part created programmatically to be used for some effect.
diff --git a/api/symbols/AnimationManager.html b/api/symbols/AnimationManager.html
index 83c8fb5aa..fd5a3ffce 100644
--- a/api/symbols/AnimationManager.html
+++ b/api/symbols/AnimationManager.html
@@ -1,4 +1,4 @@
-AnimationManager | GoJS API
AnimationManager handles animations in a Diagram. Each Diagram has one, Diagram.animationManager.
Setting the Model, performing a Layout, Group expansion and Tree expansion automatically start animations through
the defaultAnimation. Animations can be manually started by creating Animations, which are associated with an
diff --git a/api/symbols/AnimationTrigger.html b/api/symbols/AnimationTrigger.html
index 8a66b3afc..581a17c1c 100644
--- a/api/symbols/AnimationTrigger.html
+++ b/api/symbols/AnimationTrigger.html
@@ -1,4 +1,4 @@
-
An AnimationTrigger describes how to automatically animate a property on a GraphObject
when it changes value.
The target property name is a string, and all name matching is case-sensitive.
diff --git a/api/symbols/ArrangingLayout.html b/api/symbols/ArrangingLayout.html
index f0fde6b2c..2e727f226 100644
--- a/api/symbols/ArrangingLayout.html
+++ b/api/symbols/ArrangingLayout.html
@@ -1,4 +1,4 @@
-ArrangingLayout | GoJS API
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
A custom Layout that provides one way to have a layout of layouts.
It partitions nodes and links into separate subnetworks, applies a primary
layout to each subnetwork, and then arranges those results by an
diff --git a/api/symbols/BalloonLink.html b/api/symbols/BalloonLink.html
index 041c8b590..6597160f1 100644
--- a/api/symbols/BalloonLink.html
+++ b/api/symbols/BalloonLink.html
@@ -1,4 +1,4 @@
-
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
This custom Link class customizes its Shape to surround the comment node (the from node).
If the Shape is filled, it will obscure the comment itself unless the Link is behind the comment node.
Thus the default layer for BalloonLinks is "Background".
diff --git a/api/symbols/Binding.html b/api/symbols/Binding.html
index 0246a69bf..2e95c7d6e 100644
--- a/api/symbols/Binding.html
+++ b/api/symbols/Binding.html
@@ -1,4 +1,4 @@
-Binding | GoJS API
A Binding describes how to automatically set a property on a GraphObject
to a value of a property of data in the model.
The target property name and the data source property name are strings.
diff --git a/api/symbols/Brush.html b/api/symbols/Brush.html
index aa8cf960d..92b79b1a4 100644
--- a/api/symbols/Brush.html
+++ b/api/symbols/Brush.html
@@ -1,4 +1,4 @@
-
A Brush holds color information and describes how to draw the inside
of a Shape or the stroke of a shape or a TextBlock or the
background of any GraphObject.
diff --git a/api/symbols/ChangedEvent.html b/api/symbols/ChangedEvent.html
index 2e8b845b3..86c3e13a8 100644
--- a/api/symbols/ChangedEvent.html
+++ b/api/symbols/ChangedEvent.html
@@ -1,4 +1,4 @@
-ChangedEvent | GoJS API
A ChangedEvent represents a change to an object, typically a GraphObject,
but also for model data, a Model, or a Diagram.
The most common case is for remembering the name of a property
diff --git a/api/symbols/CircularEdge.html b/api/symbols/CircularEdge.html
index e00a48424..526ceae20 100644
--- a/api/symbols/CircularEdge.html
+++ b/api/symbols/CircularEdge.html
@@ -1,4 +1,4 @@
-
This layout positions nodes in a circular arrangement.
There are several samples that use CircularLayout.
The layout cannot guarantee that it provides optimal positioning of nodes when trying to minimize link crossings.
diff --git a/api/symbols/CircularNetwork.html b/api/symbols/CircularNetwork.html
index 886f78229..2c5421158 100644
--- a/api/symbols/CircularNetwork.html
+++ b/api/symbols/CircularNetwork.html
@@ -1,4 +1,4 @@
-CircularNetwork | GoJS API
This class represents an abstract graph of CircularVertexes and CircularEdges
that can be constructed based on the Nodes and Links of a Diagram
so that the CircularLayout can operate independently of the diagram until it
diff --git a/api/symbols/CircularVertex.html b/api/symbols/CircularVertex.html
index d92d58741..16f2370b6 100644
--- a/api/symbols/CircularVertex.html
+++ b/api/symbols/CircularVertex.html
@@ -1,4 +1,4 @@
-
The ClickCreatingTool lets the user create a node by clicking where they want the new node to be.
By default a double-click is required to start this tool;
set isDoubleClick to false if you want a single-click to create a node.
diff --git a/api/symbols/ClickSelectingTool.html b/api/symbols/ClickSelectingTool.html
index dce4b3a0a..820ed3b36 100644
--- a/api/symbols/ClickSelectingTool.html
+++ b/api/symbols/ClickSelectingTool.html
@@ -1,4 +1,4 @@
-ClickSelectingTool | GoJS API
The ClickSelectingTool selects and deselects Parts when there is a click.
It does this by calling Tool.standardMouseSelect.
It is also responsible for handling and dispatching click events on GraphObjects
diff --git a/api/symbols/ColumnResizingTool.html b/api/symbols/ColumnResizingTool.html
index 87c66ee6a..b4e7dd336 100644
--- a/api/symbols/ColumnResizingTool.html
+++ b/api/symbols/ColumnResizingTool.html
@@ -1,4 +1,4 @@
-
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
The Diagram.commandHandler implements various
commands such as CommandHandler.deleteSelection or CommandHandler.redo.
The CommandHandler includes keyboard event handling to interpret
diff --git a/api/symbols/ContextMenuTool.html b/api/symbols/ContextMenuTool.html
index 9d17bd994..7058fa755 100644
--- a/api/symbols/ContextMenuTool.html
+++ b/api/symbols/ContextMenuTool.html
@@ -1,4 +1,4 @@
-
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the extensions (for loading via script tags),extensionsTS (UMD modules), or extensionsJSM (ES6 modules) folders. See the Extensions intro page for more information.
This CurvedLinkReshapingTool class allows for a Link's path to be modified by the user
via the dragging of a single tool handle at the middle of the link.
Dragging the handle changes the value of Link.curviness.
diff --git a/api/symbols/Diagram.html b/api/symbols/Diagram.html
index 7ab6abdda..cf2d432ee 100644
--- a/api/symbols/Diagram.html
+++ b/api/symbols/Diagram.html
@@ -1,4 +1,4 @@
-Diagram | GoJS API
A Diagram is associated with an HTML DIV element. Constructing a Diagram creates
an HTML Canvas element which it places inside of the given DIV element, in addition to several helper DIVs.
GoJS will manage the contents of this DIV -- you should not modify the contents of the DIV,
diff --git a/api/symbols/DiagramEvent.html b/api/symbols/DiagramEvent.html
index 638a26a2d..1d2fa27b8 100644
--- a/api/symbols/DiagramEvent.html
+++ b/api/symbols/DiagramEvent.html
@@ -1,4 +1,4 @@
-
A DiagramEvent represents a more abstract event than an InputEvent.
They are raised on the Diagram class.
One can receive such events by registering a DiagramEvent listener on a Diagram
diff --git a/api/symbols/DiagramFile.html b/api/symbols/DiagramFile.html
index 4a41b68b8..a4f5a6642 100644
--- a/api/symbols/DiagramFile.html
+++ b/api/symbols/DiagramFile.html
@@ -1,4 +1,4 @@
-
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
GoJS API
GoJS Class Index
Diagram Classes
Geometry Classes
Model Classes
Layout Classes
Tool Classes
Collection Classes
Extension Classes
Layout Extension Classes
Part Extension Classes
Tool Extension Classes
Storage Classes
Type
Back Conversion: ((val: any, sourceData: any, model: Model) => any) | null
For bindings: The optional conversion function to convert property values back to data values. Specifying this function modifies a binding to set its Binding.mode to be Binding.TwoWay. If you want a two-way binding without a back-conversion function, specify
null
for aBackConversion
. diff --git a/api/symbols/ActionTool.html b/api/symbols/ActionTool.html index efea0d3cd..2901a988e 100644 --- a/api/symbols/ActionTool.html +++ b/api/symbols/ActionTool.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ActionTool
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ActionTool
Hierarchy
The ActionTool is responsible for handling and dispatching mouse events on GraphObjects that have GraphObject.isActionable set to true. This is how one implements "controls", such as buttons or sliders or knobs, as GraphObjects diff --git a/api/symbols/Adornment.html b/api/symbols/Adornment.html index 1a60e7055..261d262ec 100644 --- a/api/symbols/Adornment.html +++ b/api/symbols/Adornment.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class Adornment
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class Adornment
Hierarchy
An Adornment is a special kind of Part that is associated with another Part, the Adornment.adornedPart.
Adornments are normally associated with a particular GraphObject in the adorned Part -- diff --git a/api/symbols/Animation.html b/api/symbols/Animation.html index db1d7a895..a6d6255f8 100644 --- a/api/symbols/Animation.html +++ b/api/symbols/Animation.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class Animation
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class Animation
Hierarchy
Animations are used to animate GraphObject and Diagram properties.
This class is useful for creating manual animations. If you wish to animate particular properties on a GraphObject every time their value changes, @@ -104,7 +104,15 @@ Default false. This is commonly used when animating opacity or scale of "disappearing" nodes during collapse. Even though the node may appear to go to scale 0.001, the programmer usually wants the scale to reflect its prior value, once hidden.
Returns Animation
this Animation
-add Temporary Part
Parameters
part: Part
add Temporary Part
Add a temporary Part to this animation. +This part will be added to the Diagram when the animation is started, +and removed from the Diagram when the animation completes. +This is intended to be used with add, to animate properties of this Part or its elements.
+The temporary part added is typically either a GraphObject.copy of an existing Part, +which is to be deleted and requires a copy for animated effects, or else a wholly new temporary Part, +constructed in memory for the purpose of creating some effect.
+Parameters
part: Part
A part to add to the Diagram at the start of the animation and remove at the end. This is typically either a copied Part already in the Diagram, to animate its deletion, or a Part created programmatically to be used for some effect.
diff --git a/api/symbols/AnimationManager.html b/api/symbols/AnimationManager.html index 83c8fb5aa..fd5a3ffce 100644 --- a/api/symbols/AnimationManager.html +++ b/api/symbols/AnimationManager.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class AnimationManager
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class AnimationManager
Hierarchy
AnimationManager handles animations in a Diagram. Each Diagram has one, Diagram.animationManager. Setting the Model, performing a Layout, Group expansion and Tree expansion automatically start animations through the defaultAnimation. Animations can be manually started by creating Animations, which are associated with an diff --git a/api/symbols/AnimationTrigger.html b/api/symbols/AnimationTrigger.html index 8a66b3afc..581a17c1c 100644 --- a/api/symbols/AnimationTrigger.html +++ b/api/symbols/AnimationTrigger.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class AnimationTrigger
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class AnimationTrigger
Hierarchy
An AnimationTrigger describes how to automatically animate a property on a GraphObject when it changes value. The target property name is a string, and all name matching is case-sensitive.
diff --git a/api/symbols/ArrangingLayout.html b/api/symbols/ArrangingLayout.html index f0fde6b2c..2e727f226 100644 --- a/api/symbols/ArrangingLayout.html +++ b/api/symbols/ArrangingLayout.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ArrangingLayout Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ArrangingLayout Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
A custom Layout that provides one way to have a layout of layouts. It partitions nodes and links into separate subnetworks, applies a primary layout to each subnetwork, and then arranges those results by an diff --git a/api/symbols/BalloonLink.html b/api/symbols/BalloonLink.html index 041c8b590..6597160f1 100644 --- a/api/symbols/BalloonLink.html +++ b/api/symbols/BalloonLink.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class BalloonLink Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class BalloonLink Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
This custom Link class customizes its Shape to surround the comment node (the from node). If the Shape is filled, it will obscure the comment itself unless the Link is behind the comment node. Thus the default layer for BalloonLinks is "Background".
diff --git a/api/symbols/Binding.html b/api/symbols/Binding.html index 0246a69bf..2e95c7d6e 100644 --- a/api/symbols/Binding.html +++ b/api/symbols/Binding.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class Binding
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class Binding
Hierarchy
A Binding describes how to automatically set a property on a GraphObject to a value of a property of data in the model. The target property name and the data source property name are strings. diff --git a/api/symbols/Brush.html b/api/symbols/Brush.html index aa8cf960d..92b79b1a4 100644 --- a/api/symbols/Brush.html +++ b/api/symbols/Brush.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class Brush
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class Brush
Hierarchy
A Brush holds color information and describes how to draw the inside of a Shape or the stroke of a shape or a TextBlock or the background of any GraphObject.
diff --git a/api/symbols/ChangedEvent.html b/api/symbols/ChangedEvent.html index 2e8b845b3..86c3e13a8 100644 --- a/api/symbols/ChangedEvent.html +++ b/api/symbols/ChangedEvent.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ChangedEvent
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ChangedEvent
Hierarchy
A ChangedEvent represents a change to an object, typically a GraphObject, but also for model data, a Model, or a Diagram. The most common case is for remembering the name of a property diff --git a/api/symbols/CircularEdge.html b/api/symbols/CircularEdge.html index e00a48424..526ceae20 100644 --- a/api/symbols/CircularEdge.html +++ b/api/symbols/CircularEdge.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class CircularEdge
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class CircularEdge
Hierarchy
This holds CircularLayout-specific information about Links.
This class inherits from LayoutEdge.
Index
Constructors
Inherited Members
Properties
Methods
Constructors
constructor
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class CircularLayout
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class CircularLayout
Hierarchy
This layout positions nodes in a circular arrangement. There are several samples that use CircularLayout. The layout cannot guarantee that it provides optimal positioning of nodes when trying to minimize link crossings.
diff --git a/api/symbols/CircularNetwork.html b/api/symbols/CircularNetwork.html index 886f78229..2c5421158 100644 --- a/api/symbols/CircularNetwork.html +++ b/api/symbols/CircularNetwork.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class CircularNetwork
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class CircularNetwork
Hierarchy
This class represents an abstract graph of CircularVertexes and CircularEdges that can be constructed based on the Nodes and Links of a Diagram so that the CircularLayout can operate independently of the diagram until it diff --git a/api/symbols/CircularVertex.html b/api/symbols/CircularVertex.html index d92d58741..16f2370b6 100644 --- a/api/symbols/CircularVertex.html +++ b/api/symbols/CircularVertex.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class CircularVertex
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class CircularVertex
Hierarchy
This holds CircularLayout-specific information about Nodes.
This class inherits from LayoutVertex.
Index
Constructors
Properties
Inherited Members
Properties
Methods
Constructors
constructor
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ClickCreatingTool
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ClickCreatingTool
Hierarchy
The ClickCreatingTool lets the user create a node by clicking where they want the new node to be. By default a double-click is required to start this tool; set isDoubleClick to false if you want a single-click to create a node.
diff --git a/api/symbols/ClickSelectingTool.html b/api/symbols/ClickSelectingTool.html index dce4b3a0a..820ed3b36 100644 --- a/api/symbols/ClickSelectingTool.html +++ b/api/symbols/ClickSelectingTool.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ClickSelectingTool
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ClickSelectingTool
Hierarchy
The ClickSelectingTool selects and deselects Parts when there is a click. It does this by calling Tool.standardMouseSelect. It is also responsible for handling and dispatching click events on GraphObjects diff --git a/api/symbols/ColumnResizingTool.html b/api/symbols/ColumnResizingTool.html index 87c66ee6a..b4e7dd336 100644 --- a/api/symbols/ColumnResizingTool.html +++ b/api/symbols/ColumnResizingTool.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ColumnResizingTool Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ColumnResizingTool Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
The ColumnResizingTool class lets the user resize each column of a named Table Panel in a selected Part.
If you want to experiment with this extension, try the Column Resizing sample.
Index
Constructors
Properties
Methods
Inherited Members
Properties
Methods
Constructors
constructor
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class CommandHandler
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class CommandHandler
Hierarchy
The Diagram.commandHandler implements various commands such as CommandHandler.deleteSelection or CommandHandler.redo. The CommandHandler includes keyboard event handling to interpret diff --git a/api/symbols/ContextMenuTool.html b/api/symbols/ContextMenuTool.html index 9d17bd994..7058fa755 100644 --- a/api/symbols/ContextMenuTool.html +++ b/api/symbols/ContextMenuTool.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class ContextMenuTool
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class ContextMenuTool
Hierarchy
The ContextMenuTool is used to create and show a context menu. It automatically disables any browser context menu.
Define context menus on individual GraphObjects by setting GraphObject.contextMenu. diff --git a/api/symbols/CurvedLinkReshapingTool.html b/api/symbols/CurvedLinkReshapingTool.html index c18d57844..70a08e62d 100644 --- a/api/symbols/CurvedLinkReshapingTool.html +++ b/api/symbols/CurvedLinkReshapingTool.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class CurvedLinkReshapingTool Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class CurvedLinkReshapingTool Extension
This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. Extensions can be found in the GoJS kit under the
extensions
(for loading via script tags),extensionsTS
(UMD modules), orextensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.Hierarchy
This CurvedLinkReshapingTool class allows for a Link's path to be modified by the user via the dragging of a single tool handle at the middle of the link. Dragging the handle changes the value of Link.curviness.
diff --git a/api/symbols/Diagram.html b/api/symbols/Diagram.html index 7ab6abdda..cf2d432ee 100644 --- a/api/symbols/Diagram.html +++ b/api/symbols/Diagram.html @@ -1,4 +1,4 @@ -- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class Diagram
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class Diagram
Hierarchy
A Diagram is associated with an HTML DIV element. Constructing a Diagram creates an HTML Canvas element which it places inside of the given DIV element, in addition to several helper DIVs. GoJS will manage the contents of this DIV -- you should not modify the contents of the DIV, diff --git a/api/symbols/DiagramEvent.html b/api/symbols/DiagramEvent.html index 638a26a2d..1d2fa27b8 100644 --- a/api/symbols/DiagramEvent.html +++ b/api/symbols/DiagramEvent.html @@ -1,4 +1,4 @@ -
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.22
by Northwoods Software®
Class DiagramEvent
Hierarchy
- Preparing search index...
- The search index is not available
GoJS APIversion 2.2.23
by Northwoods Software®
Class DiagramEvent
Hierarchy
A DiagramEvent represents a more abstract event than an InputEvent. They are raised on the Diagram class. One can receive such events by registering a DiagramEvent listener on a Diagram diff --git a/api/symbols/DiagramFile.html b/api/symbols/DiagramFile.html index 4a41b68b8..a4f5a6642 100644 --- a/api/symbols/DiagramFile.html +++ b/api/symbols/DiagramFile.html @@ -1,4 +1,4 @@ -