Optional
div: string | ElementA 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.
Optional
init: Partial<Palette>A JavaScript object specifying optional initialization properties object. Can specify Palette properties, and Palette sub-properties, just as when initializing a Diagram. Example:
{
allowZoom: false,
"animationManager.isEnabled": false
}
Optional
init: Partial<Palette>A JavaScript object specifying optional initialization properties object. Can specify Palette properties, and Palette sub-properties, just as when initializing a Diagram. 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.GridSorting.Forwards
(GridLayout.sorting).myPalette.layout.comparer
(GridLayout.comparer).