Options
Public/Protected
  • Public
  • Public/Protected
  • All
Menu

GoJS API 文档

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, although you may style the given DIV (background, border, etc) and position and size it as needed.

Minimal Diagram construction looks like this. HTML:

<div id="myDiagramDiv" style="border: solid 1px black; width:400px; height:400px"></div>

JavaScript:

var $ = go.GraphObject.make;  // for conciseness

myDiagram = $(go.Diagram, "myDiagramDiv",  // create a Diagram for the DIV HTML element
           {
             "undoManager.isEnabled": true  // enable undo & redo
           });

The diagram will draw onto an HTML Canvas element, created inside the Diagram DIV.

Each Diagram holds a set of Layers each of which holds some number of Parts such as Nodes and Links. Each Part consists of GraphObjects such as TextBlocks and Shapes and Panels holding yet more GraphObjects.

A Diagram and its Parts provide the visual representation of a Model that holds JavaScript data objects for the nodes and the links. The model provides the way to recognize the relationships between the data.

Two Diagrams can display and manipulate the same Model. (Example)

A diagram will automatically create Nodes and Links corresponding to the model data. The diagram has a number of named templates it uses to create the actual parts: nodeTemplateMap, groupTemplateMap, and linkTemplateMap. Each template may have some data Bindings that set the part's GraphObjects' properties based on the value of properties of the data.

A simple Node template and Model data (both nodes and links) may look like this:

var $ = go.GraphObject.make;  // for conciseness

// define a simple Node template
myDiagram.nodeTemplate =
$(go.Node, "Auto",  // the Shape will go around the TextBlock
 $(go.Shape, "RoundedRectangle",
   // Shape.fill is bound to Node.data.color
   new go.Binding("fill", "color")),
 $(go.TextBlock,
   { margin: 3 },  // some room around the text
   // TextBlock.text is bound to Node.data.key
   new go.Binding("text", "key"))
);

// create the model data that will be represented by Nodes and Links
myDiagram.model = new go.GraphLinksModel(
[
{ key: "Alpha", color: "lightblue" },
{ key: "Beta", color: "orange" },
{ key: "Gamma", color: "lightgreen" },
{ key: "Delta", color: "pink" }
],
[
{ from: "Alpha", to: "Beta" },
{ from: "Alpha", to: "Gamma" },
{ from: "Beta", to: "Beta" },
{ from: "Gamma", to: "Delta" },
{ from: "Delta", to: "Alpha" }
]);

The above code is used to make the Minimal sample, a simple example of creating a Diagram and setting its model.

Read about models on the Using Models page in the introduction. A diagram is responsible for scrolling (position) and zooming (scale) all of the parts that it shows. Each Part occupies some area given by its GraphObject.actualBounds.

The union of all of the parts' bounds constitutes the documentBounds. The document bounds determines the area that the diagram can be scrolled to. There are several properties that you can set, such as initialContentAlignment, that control the initial size and position of the diagram contents.

At any later time you can also explicitly set the position and/or scale to get the appearance that you want. But you may find it easier to call methods to get the desired effect. For example, if you want to make a particular Node be centered in the viewport, call either centerRect or scrollToRect with the Node's GraphObject.actualBounds, depending on whether or not you want the view to be scrolled if the node is already in view.

Read in the Introduction about Viewports and the Initial Viewport. You can have the diagram perform automatic layouts of its nodes and links by setting layout to an instance of the Layout subclass of your choice. The default layout is an instance of the Layout base class that ignores links and only positions Nodes that do not have a location. This default layout will allow you to programmatically position nodes (including by loading from a database) and will also allow the user to manually position nodes using the DraggingTool.

If you do supply a particular layout as the layout, you can control which Parts it operates on by setting Part.isLayoutPositioned. Normally, of course, it works on all top-level nodes and links. The layout is performed both after the model is first loaded as well as after any part is added or removed or changes visibility or size. You can disable the initial layout by setting Layout.isInitial to false. You can disable later automatic layouts by setting Layout.isOngoing to false.

See the Layouts page in the Introduction for a summary of layout behavior.

A diagram maintains a collection of selected parts, the Diagram.selection. To select a Part you set its Part.isSelected property to true.

There are many properties, named "allow...", that control what operations the user may perform on the parts in the diagram. These correspond to the same named properties on Layer that govern the behavior for those parts in a particular layer. Furthermore for some of these properties there are corresponding properties on Part, named "...able", that govern the behavior for that individual part. For example, the allowCopy property corresponds to Layer.allowCopy and to the property Part.copyable. The Part.canCopy predicate is false if any of these properties is false.

See the Permissions page for a more thorough discussion.

The commandHandler implements various standard commands, such as the CommandHandler.deleteSelection method and the CommandHandler.canDeleteSelection predicate.

See the Commands page for a listing of keyboard commands and the use of commands in general.

The diagram supports modular behavior for mouse events by implementing "tools". All mouse and keyboard events are represented by InputEvents and redirected to the currentTool. The default tool is an instance of ToolManager which keeps three lists of mode-less tools: ToolManager.mouseDownTools, ToolManager.mouseMoveTools, and ToolManager.mouseUpTools. The ToolManager searches these lists when a mouse event happens to find the first tool that can run. It then makes that tool the new currentTool, where it can continue to process input events. When the tool is done, it stops itself, causing the defaultTool to be the new currentTool.

Mouse-down tools include:

Mouse-move tools include:

Mouse-up tools include:

You can also run a tool in a modal fashion by explicitly setting currentTool. That tool will keep running until some code replaces the currentTool. This normally happens when the current tool calls Tool.stopTool, such as on a mouse-up event.

See the Tools page for a listing of predefined tools and how they operate.

A diagram raises various DiagramEvents when interesting things happen that may have affected the whole diagram. See the documentation for DiagramEvent for a complete listing.

When you need to display multiple Models, but not at the same time, you can do so by using only one Diagram and setting the model to a different one. You can also have two Diagrams share a DIV by swapping the div to null on one Diagram and setting it on the other. When permanently removing a Diagram,t o clear any memory used, set the div to null and remove all references to the Diagram. These scenarios are discussed more on the Replacing Diagrams and Models intro page.

Index

Constructors

Properties

Methods

Constants

Constructors

constructor

  • new Diagram(div?: Element | string): Diagram
  • Construct an empty Diagram for a particular DIV HTML element.

    You will normally initialize properties of the Diagram that control its appearance and behavior. These properties include:

    Then you will need to construct a Model (usually a GraphLinksModel) for the Diagram, initialize its data by setting its Model.nodeDataArray and other properties, and then set the diagram's model.

    Finally, if you want to disassociate the Diagram from the HTML Div element, set Diagram.div to null. If you remove a part of the HTML DOM containing a Div with a Diagram, you will need to set div to null in order for the page to recover the memory.

    It is commonplace to use the static function GraphObject.make to build a Diagram:

    var $ = go.GraphObject.make;
    
    var diagram =
    $(go.Diagram, "myDiagramDiv",
     {
       allowZoom: false,
       "animationManager.isEnabled": false,  // turn off automatic animations
       "grid.visible": true,  // display a background grid for the whole diagram
       "grid.gridCellSize": new go.Size(20, 20),
       // allow double-click in background to create a new node
       "clickCreatingTool.archetypeNodeData": { text: "Node" },
       // allow Ctrl-G to call the groupSelection command
       "commandHandler.archetypeGroupData":
         { text: "Group", isGroup: true, color: "blue" },
       "commandHandler.copiesTree": true,  // for the copy command
       "commandHandler.deletesTree": true, // for the delete command
       "toolManager.hoverDelay": 100,  // how quickly tooltips are shown
       // mouse wheel zooms instead of scrolls
       "toolManager.mouseWheelBehavior": go.ToolManager.WheelZoom,
       "draggingTool.dragsTree": true,  // dragging for both move and copy
       "draggingTool.isGridSnapEnabled": true,
       layout: $(go.TreeLayout,
                 { angle: 90, sorting: go.TreeLayout.SortingAscending }),
       "undoManager.isEnabled": true,  // enable undo & redo
       // a Changed listener on the Diagram.model
       "ModelChanged": function(e) { if (e.isTransactionFinished) saveModel(); }
     });

    Parameters

    • Optional div: Element | string

      A reference to a DIV HTML element or its ID as a string. If no DIV is supplied one will be created in memory. The Diagram's Diagram.div property can then be set later on.

    Returns Diagram

Properties

allowClipboard : boolean

allowCopy : boolean

  • Gets or sets whether the user may copy objects. The initial value is true.

allowDelete : boolean

  • Gets or sets whether the user may delete objects from the Diagram. The initial value is true.

allowDragOut : boolean

  • Gets or sets whether the user may start a drag-and-drop in this Diagram, possibly dropping in a different element. The initial value is false.

allowDrop : boolean

  • Gets or sets whether the user may end a drag-and-drop operation in this Diagram. This is typically set to true when a Diagram is used with a Palette.

    The initial value is true.

allowGroup : boolean

  • Gets or sets whether the user may group parts together. The initial value is true.

allowHorizontalScroll : boolean

allowInsert : boolean

  • Gets or sets whether the user may add parts to the Diagram. The initial value is true.

allowLink : boolean

  • Gets or sets whether the user may draw new links. The initial value is true.

allowMove : boolean

  • Gets or sets whether the user may move objects. The initial value is true.

allowRelink : boolean

  • Gets or sets whether the user may reconnect existing links. The initial value is true.

allowReshape : boolean

  • Gets or sets whether the user may reshape parts. The initial value is true.

allowResize : boolean

  • Gets or sets whether the user may resize parts. The initial value is true.

allowRotate : boolean

  • Gets or sets whether the user may rotate parts. The initial value is true.

allowSelect : boolean

  • Gets or sets whether the user may select objects. The initial value is true.

allowTextEdit : boolean

  • Gets or sets whether the user may do in-place text editing. The initial value is true.

allowUndo : boolean

  • Gets or sets whether the user may undo or redo any changes. The initial value is true.

allowUngroup : boolean

  • Gets or sets whether the user may ungroup existing groups. The initial value is true.

allowVerticalScroll : boolean

allowZoom : boolean

  • Gets or sets whether the user may zoom into or out of the Diagram. The initial value is true.

Read-only animationManager : AnimationManager

autoScale : EnumValue

  • Gets or sets the autoScale behavior of the Diagram, controlling whether or not the Diagram's bounds automatically scale to fit the view.

    The only accepted values are the constant properties of Diagram, Diagram.None, Diagram.Uniform, or Diagram.UniformToFill. Setting this will change the Diagram's Diagram.scale and Diagram.position, if appropriate.

    The default value is Diagram.None - the scale and position are not automatically adjusted according to the area covered by the document. When the value is not None, any value for initialAutoScale or initialScale is ignored.

    When autoScale is set to a non-Diagram.None value, the user will not be able to zoom, and setting scale will do nothing. If you only want to scale automatically on initialization, use initialAutoScale.

    Setting this property to Diagram.Uniform is basically the same as calling zoomToFit all the time, or just disabling interactive zooming.

    Note that depending on the values of maxScale and minScale, the actual value for scale might be limited.

autoScrollRegion : MarginLike

  • Gets or sets the Margin that describes the Diagram's autoScrollRegion. The default value is a Margin of 16 on all sides. When the mouse drag point is within this region on the left or right sides, the view will automatically scroll horizontally in that direction. When the point is within the region on the top or bottom, the view will automatically scroll vertically in that direction. You can specify a distance of zero to disable autoscrolling in a direction; a value of 0,0,0,0 turns off autoscrolling altogether.

click : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user single-primary-clicks on the background of the Diagram. This typically involves a mouse-down followed by a prompt mouse-up at approximately the same position using the left (primary) mouse button. This property is used by the ClickSelectingTool when the user clicks on no object. The function is called in addition to the DiagramEvent that is raised with the name "BackgroundSingleClicked".

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    If you do provide a function that makes changes to the diagram or to its model, you should do so within a transaction -- call startTransaction and commitTransaction.

    see

    doubleClick, contextClick, GraphObject.click

commandHandler : CommandHandler

  • Gets or sets the CommandHandler for this Diagram.

    This is set to a new instance of CommandHandler on Diagram instantiation.

    Setting this property does not notify about any changed event. The value cannot be null and must not be shared with other Diagrams.

contentAlignment : Spot

  • Gets or sets the content alignment Spot of this Diagram, to be used in determining how parts are positioned when the viewportBounds width or height is smaller than the documentBounds.

    For instance a spot of Spot.Center would ensure that the Diagram's contents are always centered in the viewport.

    If you want the content to be aligned only initially, use initialContentAlignment instead.

    The default value is Spot.Default, which causes no automatic scrolling or positioning. When the value is not Default, any value for initialContentAlignment or initialPosition is ignored.

    Setting this property has the same effect as implementing a "LayoutCompleted" DiagramEvent listener that scrolls the viewport to align the content.

contextClick : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user single-secondary-clicks on the background of the Diagram. This typically involves a mouse-down followed by a prompt mouse-up at approximately the same position using the right (secondary) mouse button. This property is used by the ClickSelectingTool when the user clicks on no object. The function is called in addition to the DiagramEvent that is raised with the name "BackgroundContextClicked".

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    If you do provide a function that makes changes to the diagram or to its model, you should do so within a transaction -- call startTransaction and commitTransaction.

    see

    click, doubleClick, GraphObject.contextClick

contextMenu : Adornment | HTMLInfo | null

  • This Adornment or HTMLInfo is shown when the use context clicks in the background. The default value is null, which means no context menu is shown. On touch devices, a special default context menu will appear even there is no context menu defined. See ContextMenuTool.defaultTouchContextMenu for details.

     diagram.contextMenu =
    $("ContextMenu",
      $("ContextMenuButton",
        $(go.TextBlock, "Undo"),
        { click: function(e, obj) { e.diagram.commandHandler.undo(); } },
        new go.Binding("visible", "", function(o) {
            return o.diagram.commandHandler.canUndo();
          }).ofObject()),
      $("ContextMenuButton",
        $(go.TextBlock, "Redo"),
        { click: function(e, obj) { e.diagram.commandHandler.redo(); } },
        new go.Binding("visible", "", function(o) {
            return o.diagram.commandHandler.canRedo();
          }).ofObject())
    );
    see

    GraphObject.contextMenu, ContextMenuTool

currentCursor : string

  • Gets or sets the current cursor for the Diagram, overriding the defaultCursor.

    Valid CSS cursors are accepted, such as "auto", "default", "none", "context-menu", "help", "pointer", "progress", "wait", etc.

    It is possible to use custom cursors with the syntax "url(path_to_image), default". A fallback (like default here) is necessary for a custom cursor to work.

    To read more about cursor syntax, go to: CSS cursors (mozilla.org).

    If the specified cursor is not accepted by the platform, GoJS will append -webkit- or -moz- prefixes.

    Setting this property does not notify about any changed event. Setting this value to the empty string ('') returns the Diagram's cursor to the defaultCursor.

    see

    defaultCursor, GraphObject.cursor

currentTool : Tool

  • Gets or sets the current tool for this Diagram that handles all input events. This value is frequently replaced by the toolManager as different tools run.

    Each Diagram has a number of tools that define its behavior when responding to mouse events. These include ClickSelectingTool, DraggingTool, DragSelectingTool, LinkingTool, and ResizingTool, among others.

    Initially this is set to the value of defaultTool. Setting this to a null value is treated as if it were set to the defaultTool, because there should always be a currently running tool, except when the diagram is being initialized.

    A ToolManager is the default tool used by a Diagram - it chooses to run one of the other tools depending on the circumstances.

    Setting this property to a new tool stops the previous current tool

    Setting this property does not notify about any changed event.

    see

    defaultTool, toolManager

defaultCursor : string

  • Gets or sets the cursor to be used for the Diagram when no GraphObject specifies a different cursor.

    Valid CSS cursors are accepted, such as "auto", "default", "none", "context-menu", "help", "pointer", "progress", "wait", etc.

    It is possible to use custom cursors with the syntax "url(path_to_image), default". A fallback (like default here) is necessary for a custom cursor to work.

    To read more about cursor syntax, go to: CSS cursors (mozilla.org). The default value is "auto".

    see

    currentCursor, GraphObject.cursor

defaultScale : number

defaultTool : Tool

  • Gets or sets the default tool for this Diagram that becomes the current tool when the current tool stops. Initially this value is the same tool as toolManager, which is an instance of ToolManager.

    Setting this property also sets the currentTool if the old default tool is the currently running tool.

    Setting this property does not notify about any changed event. The value cannot be null and must not be shared with other Diagrams.

    see

    currentTool, toolManager

div : HTMLDivElement | null

  • Gets or sets the Diagram's HTMLDivElement, via an HTML Element ID. This is typically set automatically when a Div is supplied as an argument to Diagram's constructor.

    Setting this property to a new value will clobber any HTML and inner DOM elements inside of both the new and the old divs. It will then populate the Div with the elements (inner Divs, Canvases) needed for the Diagram to function.

    If you want to disassociate the Diagram from the HTML Div element, set Diagram.div to null. If you remove a part of the HTML DOM containing a Div with a Diagram, you will need to set div to null in order for the page to recover the memory.

    You should not attempt to manually modify the contents of this Div. Changing this property value does not raise a Changed event.

Read-only documentBounds : Rect

  • This read-only property returns the bounds of the diagram's contents, in document coordinates.

    This is normally computed and set by computeBounds during Diagram updates that can occur for any number of relevant reasons, such as a Part changing size.

    The Diagram's documentBounds can have an unvarying specific value by setting the fixedBounds property.

    If the documentBounds are larger than the viewportBounds, scrollbars will appear on desktop browsers. You can disable scrolling with the allowHorizontalScroll and allowVerticalScroll properties, and you can disable scrollbars themselves with the hasHorizontalScrollbar and hasVerticalScrollbar properties.

doubleClick : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user double-primary-clicks on the background of the Diagram. This typically involves a mouse-down/up/down/up in rapid succession at approximately the same position using the left (primary) mouse button. This property is used by the ClickSelectingTool when the user clicks on no object. The function is called in addition to the DiagramEvent that is raised with the name "BackgroundDoubleClicked".

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    If you do provide a function that makes changes to the diagram or to its model, you should do so within a transaction -- call startTransaction and commitTransaction.

    see

    click, contextClick, GraphObject.doubleClick

firstInput : InputEvent

  • Gets or sets the most recent mouse-down InputEvent that occurred.

    Setting this property does not notify about any changed event.

    see

    lastInput

fixedBounds : Rect

grid : Panel

  • Gets or sets a Panel of type Panel.Grid acting as the background grid extending across the whole viewport of this diagram.

groupSelectionAdornmentTemplate : Adornment

  • Gets or sets the default selection Adornment template, used to adorn selected Groups.

    Each Group can have its own Part.selectionAdornmentTemplate, which if non-null will take precedence over this Diagram property.

    This Adornment must not be in the visual tree of any Diagram.

groupTemplate : Group

  • Gets or sets the default Group template used as the archetype for group data that is added to the model.

    Setting this property just modifies the groupTemplateMap by replacing the entry named with the empty string. The value must not be null and must be a Group, not a Node or simple Part. This Part must not be in the visual tree of any Diagram.

groupTemplateMap : Map<string, Group>

  • Gets or sets a Map mapping template names to Groups. These groups are copied for each group data that is added to the model.

    The new value must not be null, nor may it contain a Node or Link or simple Part. The Links must not be in the visual tree of any Diagram. Replacing this Map will automatically call rebuildParts.

    If you modify this Map, by replacing a Group in it or by adding or removing a map entry, you need to explicitly call rebuildParts afterwards.

handlesDragDropForTopLevelParts : boolean

hasHorizontalScrollbar : boolean

hasVerticalScrollbar : boolean

Read-only highlighteds : Set<Part>

  • This read-only property returns the read-only collection of highlighted parts.

    Do not modify this collection. If you want to highlight or remove the highlight for a particular Part in a Diagram, set the Part.isHighlighted property. If you want to remove all highlights, call clearHighlighteds. If you want to removal all highlights and highlight a single object, call highlight.

initialAutoScale : EnumValue

  • Gets or sets how the scale of the diagram is automatically set at the time of the "InitialLayoutCompleted" DiagramEvent, after the model has been replaced.

    The only accepted values are listed as constant properties of Diagram, such as Diagram.None, Diagram.Uniform, or Diagram.UniformToFill. Setting this will change the Diagram's Diagram.scale and Diagram.position, if appropriate.

    If you want to always automatically scale the Diagram, set autoScale instead. If you want to set the scale to a specific value on initialization (each time the model is replaced), set initialScale.

    The default value is Diagram.None -- the scale and position are not automatically adjusted according to the area covered by the document.

    Setting this property to Diagram.Uniform is basically the same as calling zoomToFit in an "InitialLayoutCompleted" DiagramEvent listener.

    Note that depending on the values of maxScale and minScale, the actual value for scale might be limited.

initialContentAlignment : Spot

  • Gets or sets the initial content alignment Spot of this Diagram, to be used in determining how parts are positioned initially relative to the viewport, when the viewportBounds width or height is smaller than the documentBounds.

    For instance a spot of Spot.Center would ensure that the Diagram's contents are initially centered in the viewport.

    To initially align the document when the documentBounds are larger than the viewport, use initialDocumentSpot and initialViewportSpot.

    If you want the content to be constantly aligned with a spot, use contentAlignment instead.

    The default value is Spot.Default, which causes no automatic scrolling or positioning.

    Setting this property has the same effect as implementing an "InitialLayoutCompleted" DiagramEvent listener that scrolls the viewport to align the content.

    see

    initialDocumentSpot, initialViewportSpot

initialDocumentSpot : Spot

initialPosition : Point

  • Gets or sets the initial coordinates of this Diagram in the viewport, eventually setting the position. This value is relevant on initialization of a model or if delayInitialization is called. Value must be of type Point in document coordinates. The default is Point(NaN, NaN).

    Setting this property has the same effect as implementing an "InitialLayoutCompleted" DiagramEvent listener that sets position.

    Setting this property does not notify about any changed event.

    see

    initialDocumentSpot, initialViewportSpot

    since

    1.1

initialScale : number

  • Gets or sets the initial scale of this Diagram in the viewport, eventually setting the scale. This value is relevant on initialization of a model or if delayInitialization is called. The default is NaN.

    Setting this property has the same effect as implementing an "InitialLayoutCompleted" DiagramEvent listener that sets scale.

    since

    1.1

initialViewportSpot : Spot

isEnabled : boolean

isModelReadOnly : boolean

isModified : boolean

  • Gets or sets whether this Diagram's state has been modified. Setting this property does not notify about any changed event, but it does raise the "Modified" DiagramEvent, although perhaps not immediately.

    Returns true if the Diagram has been changed, if the undoManager has recorded any changes, or if an undo has been performed without a corresponding redo.

    Replacing the model automatically sets this property to false after the initial layout has completed. The "Modified" DiagramEvent is also raised when an undo or a redo has finished. A "Modified" DiagramEvent listener must not modify this Diagram or its Model.

isMouseCaptured : boolean

  • Gets or sets whether mouse events initiated within the Diagram will be captured. The initial value is true. Setting this property does not notify about any changed event.

isReadOnly : boolean

  • Gets or sets whether the Diagram may be modified by the user, while still allowing the user to scroll, zoom, and select. The initial value is false.

    see

    isModelReadOnly, isEnabled

isTreePathToChildren : boolean

  • Gets or sets whether the Diagram tree structure is defined by links going from the parent node to their children, or vice-versa. By default this property is true: links go from the parent node to the child node.

lastInput : InputEvent

  • Gets or sets the last InputEvent that occurred.

    This property is useful in tools and real-time operations for determining where the mouse pointer was most recently located.

    Setting this property does not notify about any changed event.

    see

    firstInput

Read-only layers : Iterator<Layer>

layout : Layout

  • Gets or sets the Layout used to position all of the top-level nodes and links in this Diagram. By default this property is an instance of a simple Layout that assigns positions to all parts that need it. The value cannot be null and must not be shared with other Diagrams.

Static licenseKey : string

  • Gets or sets the license key.

    since

    2.0

linkSelectionAdornmentTemplate : Adornment

  • Gets or sets the default selection Adornment template, used to adorn selected Links.

    Each Link can have its own Part.selectionAdornmentTemplate, which if non-null will take precedence over this Diagram property.

    This Adornment must not be in the visual tree of any Diagram.

linkTemplate : Link

  • Gets or sets the default Link template used as the archetype for link data that is added to the model.

    Setting this property just modifies the linkTemplateMap by replacing the entry named with the empty string. The value must not be null and must be a Link, not a Node or simple Part. This Link must not be in the visual tree of any Diagram.

linkTemplateMap : Map<string, Link>

  • Gets or sets a Map mapping template names to Links. These links are copied for each link data that is added to the model.

    The new value must not be null and must contain only Links, not Nodes or simple Parts. The Links must not be in the visual tree of any Diagram. Replacing this Map will automatically call rebuildParts.

    If you modify this Map, by replacing a Link in it or by adding or removing a map entry, you need to explicitly call rebuildParts afterwards.

Read-only links : Iterator<Link>

  • This read-only property returns an iterator of all Links in the Diagram.

    This includes both data-bound and unbound links, and both top-level links and links inside Groups.

maxScale : number

  • Gets or sets the largest value that scale may take. This property is only used to limit the range of new values of scale.

    The default value is 100.0. Values must be no less than one. Setting this to a value that is less than the current scale will cause the current diagram scale to be set to this new value.

maxSelectionCount : number

  • Gets or sets the maximum number of selected objects. The default value is a large positive integer. Values must be non-negative. Decreasing this value may cause objects to be removed from selection in order to meet the new lower limit.

minScale : number

  • Gets or sets the smallest value greater than zero that scale may take. This property is only used to limit the range of new values of scale.

    The default value is 0.0001. Values must be larger than zero and not greater than one. Setting this to a value that is greater than the current scale will cause the current diagram scale to be set to this new value.

model : Model

  • Gets or sets the Model holding data corresponding to the data-bound nodes and links of this Diagram.

    Replacing this value causes all of the bound Nodes and Links to be deleted and re-created from the new model data.

    Models may be shared by multiple Diagrams. One common approach is to have two Diagrams displaying the same Model but using different templates (see nodeTemplate, nodeTemplateMap, and the associated link and group properties) and sometimes even different Layouts.

    Setting this property does not notify about any changed event; the new value must not be null. Typically a new Model will have its own UndoManager, thereby replacing the Diagram's current UndoManager.

    Replacing or re-setting the model will re-initialize the Diagram, taking in to account initialPosition, initialScale, initialAutoScale, and initialContentAlignment. It will also set isModified to false.

    The default behavior when replacing the model is to copy a few UndoManager properties to the new UndoManager, including UndoManager.isEnabled and UndoManager.maxHistoryLength.

    It is an error to replace the Diagram.model while a transaction is in progress.

mouseDragOver : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user is dragging the selection in the background of the Diagram during a DraggingTool drag-and-drop, not over any GraphObjects.

    If this property value is a function, it is called with an InputEvent. It is called within the transaction performed by the DraggingTool. By default this property is null.

    Note that for a drag-and-drop that originates in a different diagram, the target diagram's selection collection will not be the parts that are being dragged. Instead the temporary parts being dragged can be found as the source diagram's DraggingTool.copiedParts.

    This function is called with Diagram.skipsUndoManager temporarily set to true, so that any changes to GraphObjects are not recorded in the UndoManager. You do not need to start and commit any transaction in this function. After calling this function the diagram will be updated immediately.

    For example, if you want to prevent the user from dropping Parts into the background of the diagram, and want to provide feedback about that during a drag:

      myDiagram.mouseDragOver = function(e) {
     myDiagram.currentCursor = "no-drop";
    }
    see

    mouseDrop, GraphObject.mouseDragEnter, GraphObject.mouseDragLeave

mouseDrop : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user drops the selection in the background of the Diagram at the end of a DraggingTool drag-and-drop, not onto any GraphObjects.

    If this property value is a function, it is called with an InputEvent. It is called within the transaction performed by the DraggingTool. By default this property is null.

    For example, if you want to prevent the user from dropping Parts into the background of the diagram:

      myDiagram.mouseDrop = function(e) {
     myDiagram.currentTool.doCancel();
    }
    see

    mouseDragOver, GraphObject.mouseDrop

mouseEnter : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the mouse enters the Diagram. (When the browser's mouseEnter event fires on the Diagram canvas.)

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    If you do provide a function that makes changes to the diagram or to its model, you should do so within a transaction -- call startTransaction and commitTransaction.

    see

    mouseLeave, GraphObject.mouseEnter

    since

    2.0

mouseHold : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user holds the mouse stationary in the background of the Diagram while holding down a button, not over any GraphObjects. This property is used by the ToolManager.

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    If you do provide a function that makes changes to the diagram or to its model, you should do so within a transaction -- call startTransaction and commitTransaction.

    see

    GraphObject.mouseHold

mouseHover : function(e: InputEvent): void | null

mouseLeave : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the mouse leaves the Diagram.

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    If you do provide a function that makes changes to the diagram or to its model, you should do so within a transaction -- call startTransaction and commitTransaction.

    see

    mouseEnter, GraphObject.mouseLeave

    since

    2.0

mouseOver : function(e: InputEvent): void | null

  • Gets or sets the function to execute when the user moves the mouse in the background of the Diagram without holding down any buttons, not over any GraphObjects. This property is used by the ToolManager.

    If this property value is a function, it is called with an InputEvent. By default this property is null.

    This function is called with Diagram.skipsUndoManager temporarily set to true, so that any changes to GraphObjects are not recorded in the UndoManager. You do not need to start and commit any transaction in this function. After calling this function the diagram will be updated immediately.

    see

    mouseHover, GraphObject.mouseOver

nodeSelectionAdornmentTemplate : Adornment

  • Gets or sets the default selection Adornment template, used to adorn selected Parts other than Groups or Links.

    Each Node or simple Part can have its own Part.selectionAdornmentTemplate, which if non-null will take precedence over this Diagram property.

    This Adornment must not be in the visual tree of any Diagram.

nodeTemplate : Part

  • Gets or sets the default Node template used as the archetype for node data that is added to the model. Setting this property just modifies the nodeTemplateMap by replacing the entry named with the empty string.

    The value must not be null. The template may be either a Node or a simple Part, but not a Link or a Group.

    This Part must not be in the visual tree of any Diagram.

nodeTemplateMap : Map<string, Part>

  • Gets or sets a Map mapping template names to Parts. These nodes are copied for each node data that is added to the model.

    The new value must not be null and must contain Nodes or simple Parts. These Parts must not be in the visual tree of any Diagram. Replacing this Map will automatically call rebuildParts.

    If you modify this Map, by replacing a Node or by adding or removing a map entry, you need to explicitly call rebuildParts afterwards. Any new map values must not be Links or Groups.

    If you want to create Groups, use groupTemplateMap instead.

Read-only nodes : Iterator<Node>

  • This read-only property returns an iterator of all Nodes and Groups in the Diagram.

    This includes both data-bound and unbound nodes, and both top-level nodes and nodes inside Groups. All of the simple Parts are accessible via the parts property.

    see

    findTopLevelGroups, findTreeRoots

opacity : number

  • Gets or sets the opacity for all parts in this diagram. The value must be between 0.0 (fully transparent) and 1.0 (no additional transparency). This value is multiplicative with any existing transparency, for instance from a Brush or image transparency. The default value is 1.

    since

    2.1

    see

    Layer.opacity, GraphObject.opacity

padding : MarginLike

  • Gets or sets the Margin that describes the Diagram's padding, which controls how much extra space in document coordinates there is around the area occupied by the document. This keeps nodes from butting up against the side of the diagram (unless scrolled).

    The default value is a margin of 5, all around the edge of the document.

Read-only parts : Iterator<Part>

  • This read-only property returns an iterator of all Parts in the Diagram that are not Nodes or Links or Adornments.

    This includes both data-bound and unbound parts, and both top-level parts and parts inside Groups. Use the nodes or links properties for getting the collection of all Nodes or Links in the diagram.

position : Point

  • Gets or sets the coordinates of this Diagram in the viewport. Value must be of type Point in document coordinates. The default is Point(NaN, NaN), but is typically set to a real value when a Diagram is initialized.

    Scrolling and panning the Diagram modify the Diagram's position.

    Setting this property does not notify about any changed event. However you can listen with addDiagramListener for a DiagramEvent with the name "ViewportBoundsChanged".

    The viewportBounds x and y values are always the same as the Diagram's position values.

    If you set this property any replacement of the model will result in a layout and a computation of new documentBounds, which in turn may cause the diagram to be scrolled and zoomed, depending on various Diagram properties named "initial...". You may want to set initialPosition instead of setting this property around the time that you are loading a model.

positionComputation : function(thisDiagram: Diagram, newPosition: Point): Point | null

  • Gets or sets the function used to determine the position that this Diagram can be scrolled or moved to.

    By default this function is null and the Diagram's position is bound only by the document bounds.

    When this property is set the function is given a reference to the diagram and the proposed new position Point. The function must return a new point.

    An example that disallows decimal position values:

      function computeIntegralPosition(diagram, pt) {
     return new go.Point(Math.floor(pt.x), Math.floor(pt.y));
    }

    The function, if supplied, must not have any side-effects.

    since

    1.5

scale : number

  • Gets or sets the scale transform of this Diagram. Value must be a positive number. The default value is 1. Any new value will be coerced to be between minScale and maxScale.

    Scale can automatically be set by the autoScale property. There are also initialScale and initialAutoScale for setting the scale on (re)initialization of a Diagram.

    Setting this property does not notify about any changed event. However you can listen with addDiagramListener for a DiagramEvent with the name "ViewportBoundsChanged".

    If you set this property any replacement of the model will result in a layout and a computation of new documentBounds, which in turn may cause the diagram to be scrolled and zoomed, depending on various Diagram properties named "initial...". You may want to set initialScale instead of setting this property around the time that you are loading a model.

scaleComputation : function(thisDiagram: Diagram, newScale: number): number | null

  • Gets or sets the function used to determine valid scale values for this Diagram.

    since

    1.5

scrollHorizontalLineChange : number

  • Gets or sets the distance in screen pixels that the horizontal scrollbar will scroll when scrolling by a line.

    The default value is 16.

    see

    scrollVerticalLineChange

scrollMargin : MarginLike

  • Gets or sets a scrollable area in document coordinates that surrounds the document bounds, allowing the user to scroll into empty space.

    The margin is only effective in each direction when the document bounds plus margin is greater than the viewport bounds.

    The default value is a margin of 0, all around the edge of the document.

    since

    1.5

scrollMode : EnumValue

scrollVerticalLineChange : number

  • Gets or sets the distance in screen pixels that the vertical scrollbar will scroll when scrolling by a line.

    The default value is 16.

    see

    scrollHorizontalLineChange

scrollsPageOnFocus : boolean

  • Gets or sets whether the page may be scrolled when the diagram receives focus. This happens in some browsers when the top-left corner of the diagram's HTMLDivElement is scrolled out of view, the diagram does not have focus, and the user clicks in the diagram.

    The default value is false.

    since

    1.8

Read-only selection : Set<Part>

  • This read-only property returns the read-only collection of selected objects.

    Do not modify this collection. If you want to select or deselect a particular object in a Diagram, set the Part.isSelected property. If you want to deselect all objects, call clearSelection. If you want to deselect all objects and select a single object, call select.

    You can limit how many objects the user can select by setting maxSelectionCount.

skipsUndoManager : boolean

  • Gets or sets whether ChangedEvents are not recorded by the UndoManager. The initial and normal value is false. WARNING: while this property is true do not perform any changes that cause any previous transactions to become impossible to undo.

    While this property is true, changing the Diagram or any GraphObject does not call UndoManager.handleChanged. Even when this property is true, transactions (such as calls to startTransaction) and undo/redo (such as calls to CommandHandler.undo) are still delegated to the undoManager.

    You should set this to true only temporarily, and you should remember its previous value before setting this to true. When finishing the period for which you want the UndoManager to be disabled, you should set this back to the remembered value it had before it was set to true.

    For more permanent disabling of the UndoManager, set UndoManager.isEnabled to false.

    Setting this property also sets Model.skipsUndoManager to the same value. Setting this property does not notify about any changed event.

toolManager : ToolManager

  • Gets or sets the ToolManager for this Diagram. This tool is used for mode-less operation. It is responsible for choosing a particular tool to run as the currentTool.

    This tool is normally also the defaultTool. If you don't want the ToolManager to run at all, replace the defaultTool with your own tool.

    Setting this property does not notify about any changed event. The value cannot be null and must not be shared with other Diagrams. If you set this property, you will probably also want to set defaultTool.

    see

    defaultTool

toolTip : Adornment | HTMLInfo | null

  • This Adornment or HTMLInfo is shown when the mouse stays motionless in the background. The default value is null, which means no tooltip is shown.

    Here is a simple example:

     diagram.toolTip =
    $(go.Adornment, "Auto",
      $(go.Shape, { fill: "#CCFFCC" }),
      $(go.TextBlock, { margin: 4 },
        "This diagram lets you control the world.")
    );
    see

    GraphObject.toolTip, ToolManager.doToolTip

Read-only undoManager : UndoManager

  • This read-only property returns the UndoManager for this Diagram, which actually belongs to the model.

    The default UndoManager has its UndoManager.isEnabled property set to false. If you want users to undo and redo, you should set that property to true once you have initialized the Diagram or its Model.

    Note that the UndoManager might be shared with other Diagrams that are showing the same Model. The UndoManager might also be shared with other Models too.

validCycle : EnumValue

Static Read-only version : string

  • Gets the current GoJS version.

    since

    2.0

viewSize : Size

  • Gets or sets a fixed bounding rectangle to be returned by viewportBounds when div is null. By default this is (NaN, NaN), and it is not typically set except in DOM-less environments where there will not be a Diagram DIV. Normally, the viewportBounds is sized by the DIV.

    See the intro page on GoJS within Node for a usage example.

    since

    2.0

Read-only viewportBounds : Rect

  • This read-only property returns the bounds of the portion of the Diagram in document coordinates that is viewable from its HTML Canvas. Typically when the viewport bounds are smaller than the documentBounds, the user can scroll or pan the view.

    The x and y coordinates are equal to the position of the Diagram, and the width and height are equal to the Diagram's canvas width and height, divided by the scale.

zoomPoint : Point

  • Gets or sets the zoom point of this Diagram, in viewport coordinates. This is used by Tool.standardMouseWheel and scale-setting commands to control where to zoom in or out.

    Typical usage is to remember the value of this property and to set this property to some point within the viewport (between zero and the canvas width and height). This is commonly accomplished by using the InputEvent.viewPoint of Diagram.lastInput. Then one changes the scale somehow, perhaps by executing one of the CommandHandler commands, or by rotating the mouse wheel, or just by setting the Diagram.scale property. Finally one restores the original value of this property.

    The default value is Point(NaN, NaN). Value must be of type Point, in element coordinates, not in document coordinates. Setting this property does not notify about any changed event.

    since

    1.2

Methods

add

  • add(part: Part): void

addChangedListener

  • addChangedListener(listener: function(e: ChangedEvent): void): void
  • Register an event handler that is called when there is a ChangedEvent because this Diagram or one of its Parts has changed, but not because the Model or any model data has changed.

    It is unusual to listen for Diagram ChangedEvents -- it is far more common to listen for specific DiagramEvents by calling addDiagramListener, or to listen for Model ChangedEvents (i.e. changes to the model) by calling addModelChangedListener.

    Do not add or remove Changed listeners during the execution of a Changed listener.

    see

    removeChangedListener

    Parameters

    Returns void

addDiagramListener

  • addDiagramListener(name: DiagramEventName, listener: function(e: DiagramEvent): void): void
  • Register an event handler that is called when there is a DiagramEvent of a given name.

    See the DiagramEvent documentation for a complete listing of diagram event names and their purposes.

    see

    removeDiagramListener

    Parameters

    • name: DiagramEventName

      the name is normally capitalized, but this method uses case-insensitive comparison.

    • listener: function(e: DiagramEvent): void

      a function that takes a DiagramEvent as its argument.

      Returns void

    addLayer

    • addLayer(layer: Layer): void

    addLayerAfter

    • addLayerAfter(layer: Layer, existingLayer: Layer): void
    • Adds a layer to the list of layers after a specified layer. This method can also re-order layers.

      see

      addLayer, addLayerBefore, removeLayer

      Parameters

      • layer: Layer

        the new Layer to add or existing Layer to move in Z-order.

      • existingLayer: Layer

        the other Layer in this Diagram which should come just before the new or moved layer.

      Returns void

    addLayerBefore

    • addLayerBefore(layer: Layer, existingLayer: Layer): void
    • Adds a layer to the list of layers before a specified layer. This method can also re-order layers.

      see

      addLayer, addLayerAfter, removeLayer

      Parameters

      • layer: Layer

        the new Layer to add or existing Layer to move in Z-order.

      • existingLayer: Layer

        the other Layer in this Diagram which should come just after the new or moved layer.

      Returns void

    addModelChangedListener

    • addModelChangedListener(listener: function(e: ChangedEvent): void): void

    alignDocument

    • alignDocument(documentspot: Spot, viewportspot: Spot): void
    • Aligns the Diagram's position based on a desired document Spot and viewport Spot.

      Parameters

      Returns void

    centerRect

    • centerRect(r: Rect): void

    clear

    • clear(): void

    clearHighlighteds

    • clearHighlighteds(): void

    clearSelection

    • clearSelection(): void
    • Deselect all selected Parts. This removes all parts from the selection collection. This method raises the "ChangingSelection" and "ChangedSelection" Diagram events.

      see

      select, selectCollection

      Returns void

    commit

    • commit(func: function(d: Diagram): void, tname?: string | null): void
    • Starts a new transaction, calls the provided function, and commits the transaction. Code is called within a try-finally statement. If the function does not return normally, this rolls back the transaction rather than committing it. Example usage:

      myDiagram.commit(d => d.remove(somePart), "Remove Part");
      since

      1.8

      Parameters

      • func: function(d: Diagram): void

        the function to call as the transaction body

        • Optional tname: string | null

          a descriptive name for the transaction, or null to temporarily set skipsUndoManager to true; if no string transaction name is given, an empty string is used as the transaction name

        Returns void

      commitTransaction

      • commitTransaction(tname?: string): boolean

      Protected Virtual computeBounds

      • computeBounds(): Rect
      • This is called during a Diagram update to determine a new value for documentBounds. By default this computes the union of the bounds of all the visible GraphObjects in this Diagram, unless Diagram.fixedBounds is set.

        To compute the bounds of a collection of Parts, call computePartsBounds.

        Returns Rect

        a Rect in document coordinates.

      Virtual computeMove

      • You do not need to call or orverride this method, but you may want to override DraggingTool.computeMove, which calls this method.

        This method computes the new location for a Node or simple Part, given a new desired location and an optional Map of dragged parts, taking any grid-snapping into consideration, any Part.dragComputation function, and any Part.minLocation and Part.maxLocation.

        since

        2.0

        Parameters

        • n: Part

          the Node or simple Part that is being moved

        • newloc: Point

          the proposed new location

        • dragOptions: DraggingOptions

          the proposed new location

        • Optional result: Point

          an optional Point that is modified and returned

        Returns Point

        the possibly grid-snapped computed Point that is within the minimum and maximum permitted locations

      Virtual computePartsBounds

      • Find the union of the GraphObject.actualBounds of all of the Parts in the given collection, excluding Links unless the second argument is true.

        Unlike computeBounds, this ignores the visibility of each Part and does not add any padding to the result.

        since

        1.1

        Parameters

        • coll: Iterable<Part> | Array<Part>

          an iterable collection or Array of Parts.

        • Optional includeLinks: boolean

          defaults to false

        Returns Rect

        This returns the bounding area of the given Parts; if there are no Parts in the collection, this returns a Rect with zero width and height and an X and Y that are NaN.

      copyParts

      delayInitialization

      • delayInitialization(func?: function(): void | null): void
      • Updates the diagram immediately, then resets initialization flags so that actions taken in the argument function will be considered part of Diagram initialization, and will participate in initial layouts, initialAutoScale, initialContentAlignment, etc.

        This is useful in situations where you do not wish for the first content added to the diagram to be considered the "initial" content, such as with a Node that represents a "Loading" bar.

        since

        1.1

        Parameters

        • Optional func: function(): void | null

          an optional function of actions to perform as part of another diagram initialization.

        Returns void

      findLayer

      • findLayer(name: string): Layer | null

      findLinkForData

      • Look for a Link corresponding to a GraphLinksModel's link data object.

        Parameters

        • linkdata: ObjectData

          a JavaScript object matched by reference identity; use findLinksByExample if you want to find those Links whose data matches an example data object

        Returns Link | null

        an existing Link in this Diagram that was created because its Part.data was the link data in the Diagram's Model.

      findLinkForKey

      • findLinkForKey(key: Key): Link | null
      • Look for a Link corresponding to a model's link data object's unique key.

        since

        2.1

        Parameters

        • key: Key

          a string or number.

        Returns Link | null

        null if a link data with that key cannot be found in the model, or if a corresponding Link cannot be found in the Diagram, or if the model is a GraphLinksModel without GraphLinksModel.linkKeyProperty set to a non-empty string.

      findLinksByExample

      • Search for Links by matching the Link data with example data holding values, RegExps, or predicates.

        See the documentation of findNodesByExample for how the example data can match data of bound Parts.

        see

        findNodesByExample

        since

        1.5

        Parameters

        • Rest ...examples: Array<ObjectData>

          one or more JavaScript Objects whose properties are either predicates to be applied or RegExps to be tested or values to be compared to the corresponding data property value

        Returns Iterator<Link>

      findNodeForData

      • Look for a Node or Group corresponding to a model's node data object.

        Parameters

        • nodedata: ObjectData

          a JavaScript object matched by reference identity; use findNodesByExample if you want to find those Nodes whose data matches an example data object

        Returns Node | null

        an existing Node or Group in this Diagram that was created because its Part.data was the node data in the Diagram's Model. This will be null if there is no such part or if it's just a Part or Link.

      findNodeForKey

      • findNodeForKey(key: Key): Node | null
      • Look for a Node or Group corresponding to a model's node data object's unique key.

        Parameters

        • key: Key

          a string or number.

        Returns Node | null

        null if a node data with that key cannot be found in the model, or if a corresponding Node or Group cannot be found in the Diagram, or if what is found is just a Part.

      findNodesByExample

      • Search for Nodes or Groups by matching the Node data with example data holding values, RegExps, or predicates.

        For example, calling this method with an argument object: { sex: "M", name: /^Alex/i, age: function(n) { return n >= 18; } } will return an iterator of Nodes whose Node.data is a JavaScript object whose:

        • sex is "M" (a case-sensitive string comparison), and
        • name starts with the string "Alex" (using a case-insensitive match), and
        • age is greater than or equal to 18

        Here is how an example value can match the corresponding data value:

        • A string, number, or boolean is compared with the === operator.

        • A function is treated as a predicate and applied to the data value.

        • A regular expression (RexExp) is matched against the toString() of the data value. Common expressions include:

          • /abc/ matches any string that includes exactly the substring "abc"
          • /abc/i matches any string that includes the substring "abc", but uses a case-insensitive comparison
          • /^no/i matches any string that starts with "no", ignoring case
          • /ism$ matches any string that ends with "ism" exactly
          • /(green|red) apple/ matches any string that includes either "green apple" or "red apple"

          For more details read Regular Expressions (mozilla.org).

        • An Array requires the data value to also be an Array of equal or greater length. Each example array item that is not undefined is matched with the corresponding data array item.

        • An Object is recursively matched with the data value, which must also be an Object.

        All properties given by the argument example data must be present on the node data, unless the example property value is undefined. All other data properties are ignored when matching.

        When multiple argument objects are given, if any of the objects match the node's data, the node is included in the results.

        see

        findLinksByExample

        since

        1.5

        Parameters

        • Rest ...examples: Array<ObjectData>

          one or more JavaScript Objects whose properties are either predicates to be applied or RegExps to be tested or values to be compared to the corresponding data property value

        Returns Iterator<Node>

      findObjectAt

      • findObjectAt<T>(p: Point, navig?: function(a: GraphObject) | null, pred?: function(a: T): boolean | null)
      • Find the front-most GraphObject at the given point in document coordinates.

        If Layer.visible is false, this method will not find any objects in that layer. However, Layer.opacity does not affect this method.

        Example usage:

        // Returns the top-most object that is a selectable Part, or null if there isn't one
        myDiagram.findObjectAt(
        myDiagram.lastInput.documentPoint,
        // Navigation function
        function(x) { return x.part; },
        // Because of the navigation function, x will always be a Part.
        function(x) { return x.canSelect(); }
        );
        see

        findObjectsAt, findObjectsIn, findObjectsNear, findPartAt

        Type parameters

        Parameters

        • p: Point

          A Point in document coordinates.

        • Optional navig: function(a: GraphObject) | null

          A function taking a GraphObject and returning a GraphObject, defaulting to the identity.

        • Optional pred: function(a: T): boolean | null

          A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

      findObjectsAt

      • findObjectsAt<T, S>(p: Point, navig?: function(a: GraphObject) | null, pred?: function(a: T): boolean | null, coll?: S): S
      • Return a collection of the GraphObjects at the given point in document coordinates.

        If Layer.visible is false, this method will not find any objects in that layer. However, Layer.opacity does not affect this method.

        Example usage:

        // Returns the Nodes that are at a given point, overlapping each other
        myDiagram.findObjectsAt(somePoint,
        // Navigation function -- only return Nodes
        function(x) { var p = x.part; return (p instanceof go.Node) ? p : null; }
        );
        see

        findObjectAt, findObjectsIn, findObjectsNear, findPartsAt

        Type parameters

        Parameters

        • p: Point

          A Point in document coordinates.

        • Optional navig: function(a: GraphObject) | null

          A function taking a GraphObject and returning a GraphObject, defaulting to the identity. If this function returns null, the given GraphObject will not be included in the results.

        • Optional pred: function(a: T): boolean | null

          A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • Optional coll: S

          An optional collection (List or Set) to add the results to.

        Returns S

        a collection of GraphObjects returned by the navig function and satisfying the pred that are located at the point p, or else an empty collection. If a List or Set was passed in, it is returned.

      findObjectsIn

      • findObjectsIn<T, S>(r: Rect, navig?: function(a: GraphObject) | null, pred?: function(a: T): boolean | null, partialInclusion?: boolean, coll?: S): S
      • Returns a collection of all GraphObjects that are inside or that intersect a given Rect in document coordinates.

        If Layer.visible is false, this method will not find any objects in that layer. However, Layer.opacity does not affect this method.

        Example usage:

        // Returns the Links that intersect a given rectangle and have a certain data property
        myDiagram.findObjectsIn(someRect,
        // Navigation function -- only return Links
        function(x) { var p = x.part; return (p instanceof go.Link) ? p : null; },
        // Predicate that always receives a Link, due to above navigation function
        function(link) { return link.data.someProp > 17; },
        // the links may only partly overlap the given rectangle
        true
        );
        see

        findObjectAt, findObjectsAt, findObjectsNear, findPartsIn

        Type parameters

        Parameters

        • r: Rect

          A Rect in document coordinates.

        • Optional navig: function(a: GraphObject) | null

          A function taking a GraphObject and returning a GraphObject, defaulting to the identity. If this function returns null, the given GraphObject will not be included in the results.

        • Optional pred: function(a: T): boolean | null

          A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • Optional partialInclusion: boolean

          Whether an object can match if it merely intersects the rectangular area (true) or if it must be entirely inside the rectangular area (false). The default value is false.

        • Optional coll: S

          An optional collection (List or Set) to add the results to.

        Returns S

        a collection of GraphObjects returned by the navig function and satisfying the pred function that are within the rectangle r, or else an empty collection. If a List or Set was passed in, it is returned.

      findObjectsNear

      • findObjectsNear<T, S>(p: Point, dist: number, navig?: function(a: GraphObject) | null, pred?: function(a: T): boolean | null, partialInclusion?: boolean | S, coll?: S): S
      • Returns a collection of all GraphObjects that are within a certain distance of a given point in document coordinates.

        If Layer.visible is false, this method will not find any objects in that layer. However, Layer.opacity does not affect this method.

        Example usage:

        // Returns the Nodes that intersect a given circular area and have a certain data property
        myDiagram.findObjectsNear(somePoint,
        // The circular area is centered at somePoint and has radius 100
        100,
        // Navigation function -- only return Nodes
        function(x) { var p = x.part; return (p instanceof go.Node) ? p : null; },
        // Predicate that always receives a Node, due to above navigation function
        function(node) { return node.data.someProp > 17; },
        // the nodes may only partly overlap the given circular area
        true
        );
        see

        findObjectAt, findObjectsAt, findObjectsIn, findPartsNear

        Type parameters

        Parameters

        • p: Point

          A Point in document coordinates.

        • dist: number

          The distance from the point.

        • Optional navig: function(a: GraphObject) | null

          A function taking a GraphObject and returning a GraphObject, defaulting to the identity. If this function returns null, the given GraphObject will not be included in the results.

        • Optional pred: function(a: T): boolean | null

          A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • Optional partialInclusion: boolean | S

          Whether an object can match if it merely intersects the circular area (true) or if it must be entirely inside the circular area (false). The default value is true. The default is true.

        • Optional coll: S

          An optional collection (List or Set) to add the results to.

        Returns S

        a collection of GraphObjects returned by the navig function and satisfying the pred that are located near the point p, or else an empty collection. If a List or Set was passed in, it is returned.

      findPartAt

      • findPartAt(p: Point, selectable?: boolean): Part | null

      findPartForData

      findPartForKey

      • findPartForKey(key: Key): Part | null
      • Look for a Part or Node or Group corresponding to a model's data object's unique key. This will find a Link if the model is a GraphLinksModel that is maintaining a key on the link data objects.

        Parameters

        • key: Key

          a string or number.

        Returns Part | null

        null if a data with that key cannot be found in the model, or if a corresponding Part cannot be found in the Diagram. This will not return a Link unless the model is a GraphLinksModel and GraphLinksModel.linkKeyProperty has been set. If the same key is used for both a node data object and a link data object, this will return a Node.

      findPartsAt

      • findPartsAt<T, S>(p: Point, selectable?: boolean, coll?: S): S
      • This convenience function finds all Parts that are at a point in document coordinates and that are not in temporary layers.

        see

        findPartAt, findPartsIn, findPartsNear, findObjectsAt

        since

        2.0

        Type parameters

        Parameters

        • p: Point

          A Point in document coordinates.

        • Optional selectable: boolean

          Whether to only consider parts that are Part.selectable. The default is true.

        • Optional coll: S

          An optional collection (List or Set) to add the results to.

        Returns S

      findPartsIn

      • findPartsIn<T, S>(r: Rect, partialInclusion?: boolean, selectable?: boolean, coll?: S): S
      • This convenience function finds Parts that are inside or that intersect a given Rect in document coordinates.

        This just calls findObjectsIn with appropriate arguments, but ignoring Layers that are Layer.isTemporary.

        see

        findPartAt, findPartsAt, findPartsNear, findObjectsIn

        since

        2.0

        Type parameters

        Parameters

        • r: Rect

          a Rect in document coordinates.

        • Optional partialInclusion: boolean

          Whether a Part can match if it merely intersects the rectangular area (true) or if it must be entirely inside the rectangular area (false). The default value is false.

        • Optional selectable: boolean

          Whether to only consider parts that are Part.selectable. The default is true.

        • Optional coll: S

          An optional collection (List or Set) to add the results to.

        Returns S

      findPartsNear

      • findPartsNear<T, S>(p: Point, dist: number, partialInclusion?: boolean, selectable?: boolean, coll?: S): S
      • This convenience function finds Parts that are within a certain distance of a given point in document coordinates.

        This just calls findObjectsNear with appropriate arguments, but ignoring Layers that are Layer.isTemporary.

        see

        findPartAt, findPartsAt, findPartsIn, findObjectsNear

        since

        2.0

        Type parameters

        Parameters

        • p: Point

          A Point in document coordinates.

        • dist: number

          The distance from the point.

        • Optional partialInclusion: boolean

          Whether an object can match if it merely intersects the circular area (true) or if it must be entirely inside the circular area (false). The default is true.

        • Optional selectable: boolean

          Whether to only consider parts that are Part.selectable. The default is true.

        • Optional coll: S

          An optional collection (List or Set) to add the results to.

        Returns S

      findTopLevelGroups

      • Returns an iterator of all Groups that are at top-level, in other words that are not themselves inside other Groups.

        This is useful for when you want to traverse the diagram's graph by recursing into Groups.

        since

        1.2

        Returns Iterator<Group>

      findTreeRoots

      • Returns an iterator of all top-level Nodes that have no tree parents.

        This is useful for when you want to traverse the diagram's graph by starting at the root of each tree, assuming that the diagram consists of one tree or a forest of trees.

        since

        1.2

        Returns Iterator<Node>

      focus

      • focus(): void
      • Explicitly bring HTML focus to the Diagram's canvas. This is called by tools that may create other HTML elements such as TextEditingTool.

        If scrollsPageOnFocus is false, this tries to keep the page at the same scroll position that it had before calling focus. This method is not overridable.

        Returns void

      Static fromDiv

      • fromDiv(div: Element | string): Diagram | null
      • This static function gets the Diagram that is attached to an HTML DIV element.

        Parameters

        • div: Element | string

        Returns Diagram | null

        null if there is no Diagram associated with the given DIV, or if the argument is not a DIV element nor a string naming such a DIV element in the HTML document.

      highlight

      • highlight(part: Part | null): void

      highlightCollection

      Static inherit

      • inherit(derivedclass: Function, baseclass: Function): void
      • This static function declares that a class (constructor function) derives from another class -- but please note that most classes do not support inheritance. Do not call this function when your class is defined using an ES2015 or TypeScript "class" declaration.

        Because you must not modify the prototypes for the GoJS classes, in order to override methods you need to define a new class that inherits from a predefined class. You can then modify the prototype of your derived class.

        Typical usage is:

        function BaseClass() {
        this._total = 0;
        }
        
        public increment(x) {
        this._total += x;
        }
        
        function DerivedClass() {
        this._anotherProperty = "";
        }
        go.Diagram.inherit(DerivedClass, BaseClass);
        
        DerivedClass.prototype.someMethod = ...;

        Note that most classes do not support inheritance. Currently you can only inherit from Layout, Tool, CommandHandler, and Link or their subclasses. When you override a method, you must strongly consider calling the base method. Please read the Introduction page on Extensions for how to override methods and how to call a base method.

        The call to Diagram.inherit should be made immediately after defining the subclass constructor function and before defining any new methods or overriding any base class methods. You must not call this static function more than once on a derived class, or at all on a class defined using an ES2015 or TypeScript class declaration.

        The need for subclassing is greatly diminished by the presence of a number of properties that have functional values. Setting such a property to a function will cause that function to be called as if it were an event handler for that particular object. Example properties include: GraphObject.click, GraphObject.mouseEnter, Part.layerChanged, Node.treeExpandedChanged, LinkingBaseTool.linkValidation, CommandHandler.memberValidation, TextEditingTool.textValidation.

        Parameters

        • derivedclass: Function
        • baseclass: Function

        Returns void

      layoutDiagram

      • layoutDiagram(invalidateAll?: boolean): void
      • Perform all invalid layouts. If the optional argument is true, this will perform all of the layouts (Diagram.layout and all Group.layouts), not just the invalid ones.

        Under normal circumstances you should not need to call this method, because layouts will be performed automatically after they become invalid. However you may have disabled automatic layouts by setting Layout.isInitial and/or Layout.isOngoing to false, or by restricting a Part's Part.layoutConditions. If that is the case you might call this method (perhaps due to a user command) to perform the layout at a time of your choosing.

        Parameters

        Returns void

      makeImage

      • makeImage(options?: ImageRendererOptions): HTMLImageElement | null
      • Create an HTMLImageElement that contains a bitmap of the current Diagram. This method is just a convenience function that creates an image, sets its source to the returned string of makeImageData, and returns a reference to that Image.

        See makeImageData for a complete explanation of possible options.

        By default this method returns a snapshot of the visible diagram, but optional arguments give more options.

        At the current time methods such as Diagram.makeImage, Diagram.makeImageData and Diagram.makeSvg do not work on Overviews.

        see

        makeImageData, makeSvg

        Parameters

        • Optional options: ImageRendererOptions

          a JavaScript object detailing optional arguments for image creation, to be passed to makeImageData.

        Returns HTMLImageElement | null

        An HTML Image element, or null if a callback is specified, or null if there is no DOM.

      makeImageData

      • makeImageData(options?: ImageRendererOptions): HTMLImageElement | ImageData | string | null
      • Create a bitmap of the current Diagram encoded as a base64 string, or returned as an ImageData object. This method uses the toDataURL method of the HTMLCanvasElement to create the data URL, or the getImageData method of the Canvas Context. Unlike toDataURL, this method will not throw an error if cross-domain images were drawn on the canvas, instead it will return a data URL of a bitmap with those images omitted.

        A simple example:

        myDiagram.makeImageData({
        scale: 1.5,
        size: new go.Size(100,100)
        });

        See the page on Making Images for more usage examples.

        At the current time methods such as Diagram.makeImage, Diagram.makeImageData and Diagram.makeSvg do not work on Overviews.

        see

        makeImage

        Parameters

        • Optional options: ImageRendererOptions

          a JavaScript object detailing optional arguments for image creation. Rendering options for both images and SVG:

          • size: The size of the created image, as a Size, limited by the maxSize property. If no scale or position is specified then the diagram will be scaled to fit the given size. If you set a size, you should also set a position. If you are scaling the diagram, you may also want to scale the size.
          • scale: The scale of the diagram. If scale is specified and size is not, the resulting image will be sized to uniformly fit the space needed for the given scale. Can be constrained by the maxSize property. A scale value of NaN will automatically scale ot fit within the maxSize, but may be smaller, with a maximum computed scale of 1.
          • maxSize: The maximum size of the created image, as a Size. The default value is (Infinity, Infinity) for SVG and (2000, 2000) for images. This is typically used when scale is specified.
          • position: The position of the diagram, as a Point. By default this is the position of Diagram.documentBounds with the Diagram.padding removed. If a specific parts collection is used, by default this is the top-left diagram position of their collective bounds. If you set a position, you should also set a size.
          • parts: An iterator of GraphObjects, typically Parts, such as one from Diagram.selection or Layer.parts. If GraphObjects are specified their containing Part will be drawn. By default all Parts are drawn except temporary parts (see showTemporary).
          • padding: A Margin (or number) to pad the image with. If a size is specified, the padding will not increase the image size, it will only offset the Diagram contents within the image. The default value is a padding of 1.
          • background: A valid CSS color to replace the default (transparent) canvas background. Any padding area is also colored.
          • showTemporary: A boolean value, defaulting to false, that determines whether or not temporary objects such as adornments are included in the image.
          • showGrid: A boolean value, defaulting to the value of showTemporary, that determines whether or not the Grid Layer (containing Diagram.grid) is included in the image regardless of the value of showTemporary. This is useful if you want to include the grid but not adornments, or vice versa.
          • document: An HTML Document, defaulting to window.document (or the root object in other contexts) This may be useful to set if you intend your Image or SVG to be opened in a new window.

          Additional image-specific arguments (not for SVG):

          • type: The optional MIME type of the image. Valid values are typically "image/png" and "image/jpeg". Some browsers allow "image/webp". The default value is "image/png", and unrecognized values will defer to the default.
          • returnType: The optional return type of the image data. Valid values are "ImageData", "string", and "blob". The "string" option returns a base64 string representation of the image. The "ImageData" option returns an ImageData object representation of the image. The "Image" option returns an HTMLImageElement using ImageData as the HTMLImageElement.src. The "blob" option requires that the callback property is also defined. The default value is "string", and unrecognized values will return a string.
          • callback: The function to call when an image is finished creation. It has one argument, which is of the type specified by the value of the returnType. If provided, call the callback when finished instead of returning immediately. This can be useful if you need to wait for image assets to load. This also respects the callbackTimeout. This argument is necessary if the returnType is "blob", however a callback can be used with any returnType. See the Minimal Image Blob Download sample for an example usage, which also demonstrates downloading an image file without involving a web server.
          • callbackTimeout: If a callback is specified, the additional amount of time in milliseconds a call will wait before completeing. Right now, it will only wait if image assets in the Diagram are not yet loaded. Default is 300 (milliseconds).
          • details: The optional details to pass to the HTMLCanvasElement's toDataURL function. If the type is "image/jpeg" then this can be a number from 0 to 1, inclusive, describing the desired jpeg quality.

        Returns HTMLImageElement | ImageData | string | null

        An ImageData, or a base64-encoded string describing an image, or null if a callback is specified.

      makeSvg

      • makeSvg(options?: SvgRendererOptions): SVGElement
      • Create an SVGElement that contains a SVG rendering of the current Diagram.

        By default this method returns a snapshot of the visible diagram, but optional arguments give more options.

        See the page on Making SVG for usage examples. See the Minimal SVG Download sample, which also demonstrates downloading an SVG file without involving a web server.

        See makeImageData for an explanation of possible options that are shared by both methods. Additional SVG-specific options for this method:

        • elementFinished: A function with two arguments, GraphObject and SVGElement. As the SVG elements are created representing each graph object, this function is called on them, allowing you to modify the SVG as it is being built, to assign stylesheets, IDs, etc. Example:
          elementFinished: function(graphObject, SVGElement) {
          // set something on every SVG element that represents a GoJS TextBlock
          if (graphObject instanceof go.TextBlock) SVGElement.setAttribute(...);
          }

        At the current time methods such as Diagram.makeImage, Diagram.makeImageData and Diagram.makeSvg do not work on Overviews.

        see

        makeImage

        Parameters

        • Optional options: SvgRendererOptions

          a JavaScript object detailing optional arguments for SVG creation.

        Returns SVGElement

      moveParts

      • Move a collection of Parts in this Diagram by a given offset. Moving a Group will also move its member Nodes and Links. Moving with a zero X and a zero Y offset is potentially useful in order to snap Parts to the grid if DraggingTool.isGridSnapEnabled is true.

        This does not perform a transaction nor does it raise a DiagramEvent.

        since

        1.3

        Parameters

        • coll: Iterable<Part> | Array<Part>

          A List or a Set or Iterator of Parts, or an Array of Parts, or null to move all of the Parts in this Diagram.

        • offset: Point

          the amount to move each Part, in document coordinates.

        • check: boolean

          Whether to check Part.canMove on each part.

        • Optional dragOptions: DraggingOptions

          Optional dragging options. By default this uses the settings from the Diagram's DraggingTool.

        Returns void

      rebuildParts

      • rebuildParts(): void
      • Remove all of the Parts created from model data and then create them again. This must be called after modifying or replacing any of the template maps such as nodeTemplateMap. This re-selects all of the new Parts that were created from data of the original selected Parts.

        If you modify a template Map, there is no notification that the map has changed. You will need to call rebuildParts explicitly. If you are replacing the nodeTemplate or the nodeTemplateMap or the corresponding properties for Groups or Links, the Diagram property setters will automatically call rebuildParts.

        It is extremely wasteful to call this method after making some model data changes that you want to be reflected in the diagram. Instead, it is better call Model.setDataProperty, Model.addNodeData, Model.removeNodeData, or other model methods. Not only do those methods update efficiently, they also preserve unbound state and support undo/redo.

        Returns void

      remove

      • remove(part: Part): void
      • Removes a Part from its Layer, provided the Layer is in this Diagram. Removing a Node will also remove any Links that are connected with it. Removing a Group will also remove all of its members. Removing a Link will also remove all of its label Nodes, if it has any.

        see

        add

        Parameters

        Returns void

      removeChangedListener

      • removeChangedListener(listener: function(e: ChangedEvent): void): void

      removeDiagramListener

      • removeDiagramListener(name: DiagramEventName, listener: function(e: DiagramEvent): void): void
      • Unregister a DiagramEvent handler.

        See the documentation for DiagramEvent for a complete listing of diagram event names and their purposes.

        see

        addDiagramListener

        Parameters

        • name: DiagramEventName

          the name is normally capitalized, but this method uses case-insensitive comparison.

        • listener: function(e: DiagramEvent): void

          a function that takes a DiagramEvent as its argument.

          Returns void

        removeLayer

        • removeLayer(layer: Layer): void
        • Removes the given layer from the list of layers.

          Removing a layer does not remove the Parts in the layer. Instead, those Parts are placed into the default layer. To remove all Parts in a layer you can call Diagram.removeParts with Layer.parts as the argument.

          You cannot remove the default layer, the one named with the empty string.

          see

          addLayer, addLayerBefore, addLayerAfter, findLayer

          Parameters

          Returns void

        removeModelChangedListener

        • removeModelChangedListener(listener: function(e: ChangedEvent): void): void

        removeParts

        requestUpdate

        • requestUpdate(alwaysQueueUpdate?: boolean): void
        • Usage of this method is uncommon and may affect performance, for efficiency do not call this method unless you have a well-defined need. Normally, GoJS updates the diagram automatically, and completeing a transaction ensures an immediate update.

          The most common reason to call this method when the HTML Div has changed size but the window has not changed size, and the Diagram needs to be notified of this DOM change. See an example of resizing diagrams here.

          Requests that in the near-future the diagram makes sure all GraphObjects are arranged, recomputes the document bounds, updates the scrollbars, and redraws the viewport.

          since

          1.6

          Parameters

          • Optional alwaysQueueUpdate: boolean

            If true the Diagram will queue another update, even if an update is already occurring. The default value is false. Side effects in an "InitialLayoutCompleted" DiagramEvent listener might necessitate setting this parameter.

          Returns void

        rollbackTransaction

        • rollbackTransaction(): boolean

        scroll

        • scroll(unit: "pixel" | "line" | "page" | "document", dir: "up" | "down" | "left" | "right", dist?: number): void
        • Scrolling function used by primarily by commandHandler's CommandHandler.doKeyDown.

          see

          scrollToRect, centerRect

          Parameters

          • unit: "pixel" | "line" | "page" | "document"

            A string representing the unit of the scroll operation. Can only be 'pixel', 'line', 'page', or 'document'.

          • dir: "up" | "down" | "left" | "right"

            The direction of the scroll operation. Can only be 'up', 'down', 'left', or 'right'.

          • Optional dist: number

            An optional distance multiplier, for multiple pixels, lines, or pages. The default value is 1. This argument is ignored when the unit is 'document'.

          Returns void

        scrollToRect

        • scrollToRect(r: Rect): void
        • Modifies the position to show a given Rect of the Diagram by centering the viewport on that Rect. Does nothing if the Rect is already in view.

          See also centerRect

          see

          centerRect, scroll

          Parameters

          Returns void

        select

        • select(part: Part | null): void
        • Make the given object the only selected object. This method raises the "ChangingSelection" and "ChangedSelection" Diagram events.

          see

          selectCollection, clearSelection

          Parameters

          • part: Part | null

            a Part that is already in a layer of this Diagram. If the value is null, this does nothing.

          Returns void

        selectCollection

        • Select all of the Parts supplied in the given collection, and deselect all other Parts. This method raises the "ChangingSelection" and "ChangedSelection" Diagram events.

          see

          select, clearSelection

          Parameters

          Returns void

        setProperties

        • This method sets a collection of properties according to the property/value pairs that have been set on the given Object, in the same manner as GraphObject.make does when constructing a Diagram with an argument that is a simple JavaScript Object.

          You can set properties on an object that is the value of a property of the Diagram, or on the Diagram.toolManager, by using a subpropname.property syntax for the property name. At the current time only a single dot is permitted in the property "name".

          The property name may also be the name of a DiagramEvent, in which case this calls addDiagramListener with that DiagramEvent name.

          aDiagram.setProperties({
          allowDelete: false,
          // display a background grid for the whole diagram
          "grid.visible": true,
          "grid.gridCellSize": new go.Size(20, 20),
          "animationManager.isEnabled": false,  // turn off automatic animations
          // specify a group membership validation predicate
          "commandHandler.memberValidation": function(group, part) { return ...; },
          "commandHandler.copiesTree": true,  // for the copy command
          // mouse wheel zooms instead of scrolls
          "toolManager.mouseWheelBehavior": go.ToolManager.WheelZoom,
          "draggingTool.dragsTree": true,  // dragging for both move and copy
          "draggingTool.isGridSnapEnabled": true,
          layout: $(go.TreeLayout),
          // add a DiagramEvent listener
          "ExternalObjectsDropped": function(e) { e.subject.each(function(part) { ... }); }
          });
          since

          1.5

          Parameters

          • props: ObjectData

            a plain JavaScript object with various property values to be set on this Diagram or on a part of this Diagram.

          Returns void

        startTransaction

        • startTransaction(tname?: string): boolean

        transformDocToView

        transformViewToDoc

        updateAllRelationshipsFromData

        • updateAllRelationshipsFromData(): void

        updateAllTargetBindings

        • updateAllTargetBindings(srcprop?: string): void
        • Update all of the data-bound properties of Nodes and Links in this diagram, without having to call Model.setDataProperty. This copies/converts model data properties to set properties on Parts. This method does not conduct a transaction, so you need to start and commit one yourself.

          It is better to call Model.setDataProperty to modify data properties, because that will both record changes for undo/redo and will update all bindings that make depend on that property. Simply modifying the data and calling an "update..." method will not be able to record the previous value(s) of properties in the model data to support undo.

          If you know which model data objects have been modified, it will be more efficient to update only the Parts that need it by calling Panel.updateTargetBindings.

          To update relationships between nodes, call updateAllRelationshipsFromData.

          see

          updateAllRelationshipsFromData

          Parameters

          • Optional srcprop: string

            An optional source data property name: when provided, only evaluates those Bindings that use that particular property; when not provided or when it is the empty string, all bindings are evaluated.

          Returns void

        zoomToFit

        • zoomToFit(): void

        zoomToRect

        • zoomToRect(r: Rect, scaling?: EnumValue): void
        • Modifies the scale and position of the Diagram so that the viewport displays a given document-coordinates rectangle.

          since

          1.1

          Parameters

          Returns void

        Constants

        Static CycleAll : EnumValue

        This value for Diagram.validCycle states that there are no restrictions on making cycles of links.

        Static CycleDestinationTree : EnumValue

        This value for Diagram.validCycle states that any number of destination links may go out of a node, but at most one source link may come into a node, and there are no directed cycles.

        This value assumes that the graph does not already have any cycles in it, or else the behavior may be indeterminate.

        Static CycleNotDirected : EnumValue

        This value for Diagram.validCycle states that a valid link from a node will not produce a directed cycle in the graph.

        Static CycleNotUndirected : EnumValue

        This value for Diagram.validCycle states that a valid link from a node will not produce an undirected cycle in the graph.

        Static CycleSourceTree : EnumValue

        This value for Diagram.validCycle states that any number of source links may come into a node, but at most one destination link may go out of a node, and there are no directed cycles.

        This value assumes that the graph does not already have any cycles in it, or else the behavior may be indeterminate.

        Static DocumentScroll : EnumValue

        This value for Diagram.scrollMode states that the viewport constrains scrolling to the Diagram document bounds.

        Static InfiniteScroll : EnumValue

        This value for Diagram.scrollMode states that the viewport does not constrain scrolling to the Diagram document bounds.

        Static None : EnumValue

        The default autoScale type, used as the value of Diagram.autoScale: The Diagram does not attempt to scale so that its documentBounds would fit the view.

        Static Uniform : EnumValue

        Diagrams with this autoScale type, used as the value of Diagram.autoScale, are scaled uniformly until the whole documentBounds fits in the view.

        Static UniformToFill : EnumValue

        Diagrams with this autoScale type, used as the value of Diagram.autoScale, are scaled until the documentBounds fits in the view in one direction while a scrollbar is still needed in the other direction.

        加入 GoJS 交流群
        GoJS 交流群 (769862113)