JavaScript/jQuery Diagram - propertiesPanel
Provides access to Properties panel settings.
                        Type:
                    
                
                    Default Value: {}
                
        enabled
Specifies whether the Properties panel is available.
                        Type:
                    
                
                    Default Value: true
                
        When the enabled property is set to false, the Properties toolbar button is hidden.
groups[]
Contains an array of command groups in the Properties panel.
jQuery
JavaScript
$(function () {
    var diagram = $("#diagram").dxDiagram({
        propertiesPanel: {
            visible: true,
            collapsible: false,
            groups: [
                { commands: ["units"] },
                { commands: ["pageSize","pageOrientation","pageColor"] }
            ]
        },
    }).dxDiagram("instance");
});Feedback