Skip to main content

show

Description

Optional. Defines whether to display the Editbar when initializing

Usage

show?: boolean;

Default config

show: true

Example

const editor = new dhx.DiagramEditor("editor_container", {
type: "org",
view: {
// editbar: true, // displays default Editbar
// or configure Editbar via object
editbar: {
css: "custom_css",
show: true,
width: 300,
controls: {...},
properties: {...}
}
}
});

Change log: Added in v6.0