A reference to a DIV HTML element or its ID as a string. If no DIV is supplied, a Palette will be created in memory. The Palette's Diagram.div property can then be set later on.
A JavaScript object specifying optional initialization properties object.
Can specify Palette properties, and Palette sub-properties such as "undoManager.isEnabled": true
,
Example:
{
allowZoom: false,
"animationManager.isEnabled": false
}
A JavaScript object specifying optional initialization properties object.
Can specify Palette properties, and Palette sub-properties such as "undoManager.isEnabled": true
Example:
{
allowZoom: false,
"animationManager.isEnabled": false
}
Palette extends the Diagram class to allow objects to be dragged and placed onto other Diagrams. Its Diagram.layout is a GridLayout. The Palette is Diagram.isReadOnly but to support drag-and-drop its Diagram.allowDragOut is true.
For more discussion, see Introduction to Palettes. See samples that make use of Palettes in the samples index.
You can control the order of Parts in the palette in several manners:
myPalette.model.nodeDataArray
, just setmyPalette.layout.sorting = go.GridLayout.Forward
(GridLayout.sorting).myPalette.layout.comparer
(GridLayout.comparer).