All docs
V19.2
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
19.1
The page you are viewing does not exist in version 19.1.
18.2
The page you are viewing does not exist in version 18.2.
18.1
The page you are viewing does not exist in version 18.1.
17.2
The page you are viewing does not exist in version 17.2.
A newer version of this page is available. Switch to the current version.

DevExtreme jQuery - UI Customization

The Diagram widget allows you to customize its UI elements with the following options.

  • The toolbar option controls toolbar visibility and specifies a set of available commands.
  • The toolbox option controls element visibility, and specifies the groups and shapes visible in the toolbox.
  • The propertiesPanel option contains settings of the Properties panel.
  • The contextMenu option controls the context menu availability and specifies the visible commands.

Diagram control data toolbox

View Demo

JavaScript
    $(function() {
        $("#diagram").dxDiagram({
           contextMenu: {
                 enabled: true,
                 commands: ["bringToFront","sendToBack", "lock", "unlock"]
           },
           propertiesPanel: {
                 enabled: true,
                 collapsible: false,
                 groups: [
                    { commands: ["units"] },
                    { commands: ["pageSize","pageOrientation","pageColor"] }
                 ]
           },
           toolbar: {
                 visible: true,
                 commands: ["undo","redo","separator","fontName","fontSize","separator","bold","italic","underline","separator",
                    "fontColor","lineColor","fillColor","separator"]
           },
           toolbox: {
                 visible: true,
                 groups: [
                    "general", { category: "flowchart", title: "Flowchart", expanded: true }
                 ]
           }     
        });
    });