This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. See the Extensions intro page for more information.
Optional
init: Partial<RescalingTool>Gets the go.GraphObject that is being rescaled. This may be the same object as the selected go.Part or it may be contained within that Part.
This property is also settable, but should only be set when overriding functions in RescalingTool, and not during normal operation.
This property returns the go.GraphObject that is the tool handle being dragged by the user. This will be contained by an go.Adornment whose category is "RescalingTool". Its go.Adornment.adornedObject is the same as the adornedObject.
This property is also settable, but should only be set either within an override of doActivate or prior to calling doActivate.
Gets or sets a small GraphObject that is copied as a rescale handle for the selected part. By default this is a go.Shape that is a small blue square. Setting this property does not raise any events.
Here is an example of changing the default handle to be green "X":
tool.handleArchetype =
new go.Shape("XLine",
{ width: 8, height: 8, stroke: "green", fill: "transparent" })
This property returns the name of the GraphObject that identifies the object to be rescaled by this tool.
The default value is the empty string, resulting in the whole Node being rescaled. This property is used by findRescaleObject when calling go.Panel.findObject.
Override
canCompute the new scale given a point.
This method is called by both doMouseMove and doMouseUp. This method may be overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
in document coordinates
Override
doActivating this tool remembers the handle that was dragged, the adornedObject that is being rescaled, starts a transaction, and captures the mouse.
Override
doRestore the original go.GraphObject.scale of the adorned object.
Override
doStop the current transaction, forget the handle and adornedObject, and release the mouse.
Override
doCall scale with a new scale determined by the current mouse point. This determines the new scale by calling computeScale.
Override
doCall scale with a new scale determined by the most recent mouse point, and commit the transaction.
Return the GraphObject to be rescaled by the user.
Set the go.GraphObject.scale of the findRescaleObject.
Override
update
A custom tool for rescaling an object.
Install the RescalingTool as a mouse-down tool by calling: myDiagram.toolManager.mouseDownTools.add(new RescalingTool());
Normally it would not make sense for the same object to be both resizable and rescalable.
Note that there is no
Part.rescaleObjectName
property and there is noPart.rescalable
property. So although you cannot customize any Node to affect this tool, you can set RescalingTool.rescaleObjectName and set RescalingTool.isEnabled to control whether objects are rescalable and when.If you want to experiment with this extension, try the Rescaling sample.