Skip to main content

show

Description

Optional. Defines whether a shapebar with custom settings is displayed on initialization of the Diagram Editor

Usage

show?: boolean;

Default config

show: true 

Example

const editor = new dhx.DiagramEditor("editor_container", {
type: "default",
view: {
// shapebar: true, // displays default Shapebar
// or configure Shapebar via object
shapebar: {
show: false // true by default
}
}
});

Related article: Shapebar

Change log: Added in v6.0